/* ═══════════════════════════════════════════════════════════
   First Jewellery — VIP Portfolio Theme
   Colors: Emerald #00302E | Gold #C5A059 | Cream #FAF8F5
   ═══════════════════════════════════════════════════════════ */

:root {
    --emerald: #00302E;
    --emerald-dark: #001F1D;
    --emerald-light: #004D48;
    --gold: #C5A059;
    --gold-light: #E8D5A3;
    --gold-dark: #A8863E;
    --cream: #FAF8F5;
    --white: #FFFFFF;
    --text: #2C2C2C;
    --text-muted: #6B6B6B;
    --border-gold: rgba(197, 160, 89, 0.35);
    --shadow: 0 8px 32px rgba(0, 48, 46, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 48, 46, 0.18);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Preloader ─── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner { text-align: center; }

.preloader-logo {
    width: 100px;
    height: auto;
    margin: 0 auto 24px;
    animation: pulseGold 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(197, 160, 89, 0.2);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    animation: shimmerBar 1.2s ease-in-out infinite;
}

@keyframes shimmerBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

@keyframes pulseGold {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* ─── Top Bar ─── */
.top-bar {
    background: var(--emerald-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    padding: 8px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-tagline {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-light);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.top-bar-tagline svg { width: 14px; height: 14px; color: var(--gold); }

.top-bar-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.75);
}

.top-bar-links a:hover { color: var(--gold); }
.top-bar-links svg { width: 13px; height: 13px; }

/* ─── Header ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 48, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    transition: box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img { width: 48px; height: auto; }

.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.logo-location {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Navigation */
.main-nav { display: none; }

@media (min-width: 1024px) {
    .main-nav { display: block; }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list > li > a,
.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: color var(--transition);
    position: relative;
}

.nav-list > li > a::after,
.nav-dropdown-btn::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-list > li > a:hover,
.nav-list > li > a.active,
.nav-dropdown-btn:hover {
    color: var(--gold);
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after,
.nav-dropdown:hover .nav-dropdown-btn::after {
    transform: scaleX(1);
}

.nav-dropdown-btn svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    background: var(--emerald);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.nav-dropdown-menu a svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold);
    padding-left: 26px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-instagram {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    background: transparent;
    transition: all var(--transition);
}

.header-instagram svg {
    width: 20px;
    height: 20px;
}

.header-instagram:hover {
    background: var(--gold);
    color: var(--emerald);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
    .header-actions .btn-sm { display: inline-flex; }
}

@media (max-width: 1023px) {
    .header-actions .btn-sm { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 15, 14, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 90vw);
    height: 100%;
    background: var(--emerald);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open .mobile-menu-inner {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-gold);
}

.mobile-logo { width: 44px; }

.mobile-close {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 4px;
}

.mobile-close svg { width: 24px; height: 24px; }

.mobile-nav-list { padding: 16px 0; flex: 1; }

.mobile-nav-list li a {
    display: block;
    padding: 14px 24px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    transition: all 0.3s ease;
}

.mobile-nav-list li a:hover {
    color: var(--gold);
    padding-left: 32px;
    background: rgba(197, 160, 89, 0.06);
}

.mobile-collections-label {
    padding: 16px 24px 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 600;
}

.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid var(--border-gold);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn svg { width: 18px; height: 18px; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--emerald);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-gold:hover::before { transform: translateX(100%); }

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.45);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    width: 100%;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--emerald);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--emerald);
}

.btn-sm { padding: 10px 20px; font-size: 0.75rem; }

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--emerald);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(197, 160, 89, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--emerald) 0%, var(--emerald-dark) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L35 10 L30 20 L25 10 Z' fill='%23C5A059'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease both;
}

.hero-badge svg { width: 14px; height: 14px; color: var(--gold); }

.hero-logo {
    width: 140px;
    margin: 0 auto 24px;
    animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    line-height: 1.2;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.5s ease both;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    animation: bounce 2s ease infinite;
}

.hero-scroll svg { width: 24px; height: 24px; }

.hero-ornament {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.hero-ornament-1 { top: -100px; right: -100px; animation: rotateSlow 30s linear infinite; }
.hero-ornament-2 { bottom: -150px; left: -150px; width: 400px; height: 400px; animation: rotateSlow 40s linear infinite reverse; }

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Section Styles ─── */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--emerald);
    color: var(--white);
}

.section-cream { background: var(--cream); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-dark .section-label { color: var(--gold-light); }

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.section-dark .section-desc { color: rgba(255,255,255,0.65); }

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Categories Grid ─── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    group: category;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.category-card-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Home page collection cards — balanced height, focus on jewellery + stand */
#collections .category-card-image {
    height: 255px;
}

#collections .category-card-image img {
    object-fit: cover;
    object-position: center 72%;
}

/* Other Collections on category pages — same card image style as home */
.other-collections-grid .category-card-image {
    height: 255px;
}

.other-collections-grid .category-card-image img {
    object-fit: cover;
    object-position: center 72%;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.08);
}

.category-card-placeholder {
    color: var(--gold);
    opacity: 0.4;
}

.category-card-placeholder svg { width: 64px; height: 64px; }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,48,46,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.category-card:hover .category-card-overlay { opacity: 1; }

.category-card-body { padding: 24px; }

.category-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    margin-bottom: 14px;
    transition: all var(--transition);
}

.category-card:hover .category-card-icon {
    background: var(--gold);
    color: var(--emerald);
}

.category-card-icon svg { width: 18px; height: 18px; }

.category-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    color: var(--emerald);
}

.category-card-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.category-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    transition: gap var(--transition);
}

.category-card-link svg { width: 16px; height: 16px; }
.category-card:hover .category-card-link { gap: 10px; color: var(--gold); }

/* ─── About Strip ─── */
.about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-strip { grid-template-columns: 1fr; gap: 40px; }
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    padding: 20px;
    border: 1px solid var(--border-gold);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    pointer-events: none;
}

.about-image-inner {
    background: var(--emerald);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-inner img {
    width: 60%;
    opacity: 0.9;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--emerald);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

@media (max-width: 480px) {
    .about-features { grid-template-columns: 1fr; }
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: 4px;
    transition: all var(--transition);
}

.about-feature:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.about-feature svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature strong {
    display: block;
    font-size: 0.85rem;
    color: var(--emerald);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ─── Stats ─── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 60px 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

@media (max-width: 768px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

.stat-item { text-align: center; }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* ─── CTA Banner ─── */
.cta-banner {
    text-align: center;
    padding: 80px 40px;
    background:
        linear-gradient(135deg, rgba(0,48,46,0.95), rgba(0,31,29,0.98)),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0 L23 7 L20 14 L17 7 Z' fill='%23C5A059' fill-opacity='0.05'/%3E%3C/svg%3E");
    border: 1px solid var(--border-gold);
    border-radius: 4px;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
    background: var(--emerald);
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(197,160,89,0.08) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.page-hero-breadcrumb a { color: var(--gold-light); }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb svg { width: 14px; height: 14px; }

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.page-hero-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Portfolio Gallery ─── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Category page: 4 images per row */
.portfolio-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-gallery .portfolio-item {
    border: none;
    box-shadow: 0 2px 12px rgba(0, 48, 46, 0.06);
}

.category-gallery .portfolio-item-image {
    aspect-ratio: 3 / 4;
}

.category-gallery .portfolio-item-info {
    display: none;
}

.category-gallery .portfolio-item-zoom {
    opacity: 1;
    transform: scale(1);
    background: rgba(0, 48, 46, 0.55);
}

@media (max-width: 1200px) {
    .portfolio-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .portfolio-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.portfolio-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.12);
    cursor: pointer;
    transition: all var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.portfolio-item-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f0ebe3, #e8e0d4);
}

.portfolio-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-item-image img {
    transform: scale(1.06);
}

.portfolio-item-info {
    padding: 20px;
}

.portfolio-item-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: var(--emerald);
    margin-bottom: 6px;
}

.featured-portfolio .portfolio-item-title {
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-align: center;
    margin-bottom: 0;
}

.featured-portfolio .portfolio-item-info {
    padding: 14px 16px;
}

.portfolio-item-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-item-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0,48,46,0.7);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition);
}

.portfolio-item:hover .portfolio-item-zoom {
    opacity: 1;
    transform: scale(1);
}

.portfolio-item-zoom svg { width: 18px; height: 18px; }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border: 1px dashed var(--border-gold);
    border-radius: 4px;
}

.empty-state svg {
    width: 64px;
    height: 64px;
    color: var(--gold);
    opacity: 0.4;
    margin: 0 auto 20px;
}

.empty-state h3 {
    font-family: var(--font-display);
    color: var(--emerald);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ─── Contact Page ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
    background: var(--emerald);
    color: var(--white);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.contact-info-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.contact-info-list li:last-child { border-bottom: none; }

.contact-info-list .icon-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
}

.contact-info-list .icon-wrap svg { width: 20px; height: 20px; }

.contact-info-list strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.contact-info-list a,
.contact-info-list span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

.contact-info-list a:hover { color: var(--gold); }

.contact-form {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 4px;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--emerald);
    margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 2px;
    background: var(--cream);
    color: var(--text);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-success {
    padding: 16px;
    background: rgba(0, 128, 0, 0.08);
    border: 1px solid rgba(0, 128, 0, 0.2);
    color: #2d6a2d;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--emerald-dark);
    color: rgba(255,255,255,0.75);
}

.footer-top { padding: 80px 0 60px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo { width: 60px; margin-bottom: 16px; }

.footer-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.55);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--emerald);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links ul li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.82rem;
}

.contact-list li > svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-list a { color: rgba(255,255,255,0.6); }
.contact-list a:hover { color: var(--gold); }
.contact-list strong { display: block; color: var(--gold-light); font-size: 0.82rem; }

.footer-bottom {
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.footer-gstin { color: rgba(197, 160, 89, 0.6); }

/* ─── Lightbox ─── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 15, 14, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border: 1px solid var(--border-gold);
    border-radius: 4px;
}

.lightbox-caption {
    color: var(--gold-light);
    margin-top: 16px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0,48,46,0.8);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--emerald);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 24px; height: 24px; }

/* ─── Category Description ─── */
.category-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 4px;
}

.category-intro p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
}

/* ─── Responsive Utilities ─── */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .top-bar-links { display: none; }
    .hero { min-height: 80vh; }
    .contact-info-card,
    .contact-form { padding: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .portfolio-grid,
    .portfolio-grid-4 { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
}

/* Gold shimmer text utility */
.shimmer-text {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    to { background-position: 200% center; }
}
