/* Premier Signature LLC - Custom Premium Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Colors */
    --color-white: #FFFFFF;
    --color-charcoal: #1B1B1B;
    --color-silver: #B8B8B8;
    --color-dark-gray: #444444;
    --color-light-bg: #F5F5F5;
    
    /* Chrome & Metallic Accents */
    --chrome-gradient: linear-gradient(135deg, #F5F5F5 0%, #E1E1E1 20%, #B8B8B8 40%, #D4D4D4 60%, #9B9B9B 80%, #FFFFFF 100%);
    --chrome-text: linear-gradient(180deg, #FFFFFF 0%, #D8D8D8 40%, #9E9E9E 70%, #C4C4C4 100%);
    --chrome-border: linear-gradient(90deg, #444444, #B8B8B8, #444444);
    
    /* Typography */
    --font-heading: 'Cinzel', 'Marcellus', 'Cormorant Garamond', serif;
    --font-serif-sub: 'Cormorant Garamond', serif;
    --font-body: 'Inter', 'Manrope', sans-serif;
    
    /* Navigation Glass Style */
    --nav-glass-bg: rgba(27, 27, 27, 0.45);
    --nav-glass-border: rgba(255, 255, 255, 0.08);
}

/* === Global Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-charcoal);
    color: var(--color-white);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* === Typography Styles === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #CCCCCC;
}

/* === Layout & Containers === */
section {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Transitions / Reveals */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === Chrome Text Effect === */
.chrome-text {
    background: var(--chrome-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-family: var(--font-serif-sub);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--color-silver);
    text-transform: none;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-silver);
    margin: 25px auto 0;
}

/* === Buttons (Luxury Style) === */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px; /* Premium sleek, no rounded cartoon buttons */
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-charcoal);
    border: 1px solid var(--color-white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-chrome {
    background: var(--chrome-gradient);
    color: var(--color-charcoal);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-chrome:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* === Sticky transparent navigation that becomes solid white on scroll === */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--nav-glass-border);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    /* === padding: 15px 0;  === */
}

.premium-nav.scrolled {
    background: var(--color-white);
    border-bottom: 1px solid #E5E5E5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-white);
    transition: color 0.5s ease;
}

.logo-text{
    display:flex;
    align-items:center;
}

.logo-text img{
    display:block;
    height:3.8rem;      /* Start here */
    width:auto;
}

.premium-nav.scrolled .logo-text {
    color: var(--color-charcoal);
}

.logo-text span {
    font-weight: 300;
    color: var(--color-silver);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

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

.premium-nav.scrolled .nav-links a {
    color: rgba(27, 27, 27, 0.65);
}

.premium-nav.scrolled .nav-links a:hover,
.premium-nav.scrolled .nav-links a.active {
    color: var(--color-charcoal);
}

/* Hamburger menu bar color styling */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 16px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.premium-nav.scrolled .hamburger span {
    background-color: var(--color-charcoal);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--color-white) !important;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-white) !important;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.7) 0%, rgba(27, 27, 27, 0.9) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
    font-family: var(--font-serif-sub);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-silver);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === About Section === */
.about-section {
    background-color: var(--color-charcoal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.about-img-container {
    position: relative;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-container:hover .about-img {
    transform: scale(1.05);
}

.about-content {
    text-align: left;
}

.about-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-silver);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-headline {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-story {
    font-size: 1.1rem;
    color: #BBBBBB;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feat-item h4 {
    font-size: 0.9rem;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.feat-item p {
    font-size: 0.9rem;
    color: #888888;
}

/* === Services Section === */
.services-section {
    background-color: var(--color-light-bg);
    color: var(--color-charcoal);
}

.services-section .section-title {
    color: var(--color-charcoal);
}

.services-section .section-title::after {
    background: var(--color-charcoal);
}

.services-section .section-subtitle {
    color: var(--color-dark-gray);
}

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

.service-card {
    position: relative;
    height: 380px;
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem 1.2rem;
    color: #3e3e3e;
    background-color: #ffffff;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    z-index: 10;
    align-items: center;
    text-align: center;
}

/* Animated frame effect */
.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.5s ease;
}

.service-card::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 400px;
    background-color: #141414;
    filter: blur(50px);
    animation: animation-card-shadow 10s linear infinite;
}

.service-card::after {
    inset: 1.5px;
    background-color: rgb(255 255 255);
    border-radius: 1rem;
}

.service-icon {
    margin: 0 auto 10px auto;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e3e3e;
    z-index: 2;
    background: transparent;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.2px;
    position: relative;
    z-index: 3;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    color: #1b1b1b;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 0.8rem;
    color: #555555;
    line-height: 1.4;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.service-list {
    list-style: none;
    margin-top: 10px;
    border-top: 1px dashed #c4c4c4;
    padding-top: 12px;
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 2;
}

.service-list li {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: #444444;
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

.service-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--color-silver);
    font-size: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes animation-card-shadow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* === Portfolio Section === */
.portfolio-section {
    background-color: var(--color-charcoal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--color-silver);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    cursor: pointer;
    padding: 10px 5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: flex-start;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: calc(33.33% - 17px);
    min-width: 280px;
    height: 380px;
}

.portfolio-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

/* Small thumbnail layout overrides */
.portfolio-item.small-thumb {
    width: 200px;
    height: 200px;
    min-width: 200px;
}

.portfolio-item.small-thumb img {
    height: 200px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 27, 0.85);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    transition: opacity 0.5s ease;
    z-index: 5;
}

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

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

.portfolio-overlay h4 {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--color-white);
}

.portfolio-overlay p {
    font-family: var(--font-serif-sub);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-silver);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* Small thumbnail overlay overrides */
.portfolio-item.small-thumb .portfolio-overlay {
    padding: 10px;
}

.portfolio-item.small-thumb .portfolio-overlay h4 {
    font-size: 0.8rem;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.portfolio-item.small-thumb .portfolio-overlay p {
    font-size: 0.68rem;
}

/* === Shop Section === */
.shop-section {
    background-color: var(--color-light-bg);
    color: var(--color-charcoal);
}

.shop-section .section-title {
    color: var(--color-charcoal);
}

.shop-section .section-title::after {
    background: var(--color-charcoal);
}

.shop-section .section-subtitle {
    color: var(--color-dark-gray);
}

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

.product-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.product-img-wrapper {
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-info {
    padding: 25px 20px;
    text-align: center;
}

.product-title {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.product-price {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark-gray);
    margin-bottom: 20px;
}

.product-cta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-charcoal);
    border-bottom: 1px solid var(--color-charcoal);
    text-decoration: none;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.product-cta:hover {
    opacity: 0.6;
}

/* === Partner Section === */
.partner-section {
    background-color: var(--color-charcoal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

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

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

.partner-type {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    transition: all 0.3s ease;
}

.partner-type:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.partner-type h4 {
    font-size: 0.95rem;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.partner-type p {
    font-size: 0.85rem;
    color: #888888;
}

/* === Contact Section === */
.contact-section {
    background-color: var(--color-charcoal);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 50px;
}

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

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--color-silver);
    background: rgba(0, 0, 0, 0.6);
}

.premium-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffffff" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 10px 10px;
}

.premium-form option {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.form-submit {
    width: 100%;
    font-size: 0.9rem;
    padding: 20px;
    border: none;
}

.info-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.info-details {
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 0.8rem;
    color: var(--color-silver);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--color-white);
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-silver);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--color-white);
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* === Footer Section === */
.footer-section {
    background-color: #101010;
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--color-white);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #666666;
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: #666666;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-silver);
}

/* === Lightbox Gallery Styles === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 27, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    text-align: center;
    margin-top: 15px;
    font-family: var(--font-serif-sub);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-white);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
    background: transparent;
    border: none;
}

/* === Responsive Breakpoints === */
@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {
    section {
        padding: 80px 5%;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-img {
        height: 400px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-charcoal);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        margin: 20px 0;
        font-size: 1.1rem;
        color: var(--color-white);
    }
    .premium-nav.scrolled .nav-links a {
        color: var(--color-white); /* keep inside dark side-nav menu */
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item {
        width: 100%;
    }
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .partner-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    .footer-bottom-links a {
        margin: 0 10px;
    }
}
