:root {
    --primary-color: #111111;
    --accent-color: #c9a227; /* Gold */
    --bg-light: #ffffff;
    --bg-off-white: #f9f9f9;
    --text-gray: #666666;
    --font-display: 'Tenor Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--primary-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- NAVIGATION --- */
.navbar {
    padding: 20px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: var(--primary-color) !important;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; 
    background: var(--primary-color); transition: width 0.3s;
}
.nav-link.active::after { width: 100%; }
.nav-link:hover::after { width: 100%; }

.btn-shop {
    background: var(--primary-color); color: white;
    padding: 12px 30px; text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.75rem; border: none; transition: all 0.3s;
    text-decoration: none;
}
.btn-shop:hover { background: var(--accent-color); color: white; }

.cart-trigger { position: relative; cursor: pointer; margin-left: 20px; font-size: 1.2rem; }
.cart-count {
    position: absolute; top: -5px; right: -8px;
    background: var(--accent-color); color: white; font-size: 0.6rem;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}


/* --- HERO SLIDER --- */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-size: cover; 
    background-position: center;
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    color: white;
}

/* [INSTRUCTION] HERO IMAGE: Replace url() */
.slide-1 { 
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero-bg.jpg'); 
}

.hero-content { z-index: 2; max-width: 800px; padding: 20px; animation: fadeInUp 1s ease; }
.hero-title { font-size: 4.5rem; line-height: 1; margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 40px; display: block; }

/* --- CATEGORY GRID --- */
.category-card {
    position: relative; overflow: hidden; aspect-ratio: 4/5;
    cursor: pointer; margin-bottom: 30px;
}
.category-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover .category-img { transform: scale(1.1); }
.category-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px; background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white; text-align: center;
}

/* --- VALUE PROPS --- */
.value-prop {
    padding: 80px 0; background-color: var(--bg-off-white); text-align: center;
}
.prop-icon { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 20px; }
.prop-title { font-size: 1.2rem; margin-bottom: 15px; }
.prop-text { color: var(--text-gray); font-size: 0.9rem; line-height: 1.6; max-width: 300px; margin: 0 auto; }

/* --- TESTIMONIALS --- */
.testimonials { padding: 100px 0; text-align: center; }
.quote-text { font-size: 1.5rem; font-family: var(--font-display); line-height: 1.4; max-width: 800px; margin: 0 auto 30px; }
.quote-author { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-gray); }

/* --- FEATURED WORK --- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.work-item { position: relative; aspect-ratio: 10/8; overflow: hidden; }
.work-img { width: 100%; height: 100%; object-fit: cover; }

/* --- FOOTER --- */
.footer { background: #111; color: white; padding: 80px 0 40px; }
.footer h5 { color: white; margin-bottom: 25px; font-size: 1.1rem; }
.footer-link { color: #999; text-decoration: none; display: block; margin-bottom: 10px; font-size: 0.9rem; transition: color 0.3s; }
.footer-link:hover { color: white; }
.newsletter-input {
    background: transparent; border: none; border-bottom: 1px solid #444;
    color: white; padding: 10px 0; width: 100%; margin-bottom: 20px;
}
.newsletter-input:focus { outline: none; border-color: white; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .work-grid { grid-template-columns: 1fr; }
}

/* -------- ABOUT SECTION -------- */

/* --- HERO HEADER --- */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    background-color: var(--bg-off-white);
}
.page-title { font-size: 3rem; margin-bottom: 15px; }
.page-sub { color: var(--text-gray); font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }

/* --- FOUNDER SECTION --- */
.founder-section { padding: 100px 0; }
.founder-img-box {
    position: relative;
    padding-bottom: 120%; /* Portrait Ratio */
    background: #eee;
    overflow: hidden;
}
.founder-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.founder-quote {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 30px;
}
.founder-name {
    font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase;
    border-top: 1px solid #111; display: inline-block; padding-top: 15px;
}

/* --- PHILOSOPHY GRID --- */
.philosophy-section {
    background-color: #111; color: white; padding: 100px 0;
}
.phil-card {
    padding: 40px; border: 1px solid rgba(255,255,255,0.1);
    height: 100%; text-align: center; transition: transform 0.3s;
}
.phil-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.02); }
.phil-icon { font-size: 2rem; color: var(--accent-color); margin-bottom: 20px; }
.phil-title { font-size: 1.2rem; margin-bottom: 15px; color: white; }
.phil-text { color: #999; font-size: 0.9rem; line-height: 1.6; }

/* --- STUDIO / PROCESS --- */
.studio-section { padding: 100px 0; }
.studio-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.studio-item {
    background: #f4f4f4; height: 300px; position: relative; overflow: hidden;
}
/* Make the first item span full height */
.studio-item:first-child { grid-row: span 2; height: 620px; } 

.studio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.studio-item:hover .studio-img { transform: scale(1.05); }

/* --- PHILOSOPHY GRID --- */
.philosophy-section {
    background-color: #111; color: white; padding: 100px 0;
}
.phil-card {
    padding: 40px; border: 1px solid rgba(255,255,255,0.1);
    height: 100%; text-align: center; transition: transform 0.3s;
}
.phil-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.02); }
.phil-icon { font-size: 2rem; color: var(--accent-color); margin-bottom: 20px; }
.phil-title { font-size: 1.2rem; margin-bottom: 15px; color: white; }
.phil-text { color: #999; font-size: 0.9rem; line-height: 1.6; }

/* --- STUDIO / PROCESS --- */
.studio-section { padding: 100px 0; }
.studio-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.studio-item {
    background: #f4f4f4; height: 300px; position: relative; overflow: hidden;
}
/* Make the first item span full height */
.studio-item:first-child { grid-row: span 2; height: 620px; } 

.studio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.studio-item:hover .studio-img { transform: scale(1.05); }

/* -------- PRICING SECTION -------- */

/* --- PRICING TIERS --- */
.pricing-section { padding: 80px 0; }

.price-card {
    border: 1px solid #eee;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    background: white;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: var(--primary-color);
    background: #fdfdfd;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 2;
}

.price-card:hover { transform: translateY(-5px); border-color: var(--accent-color); }

.tier-name { font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 2px; }
.tier-price { font-size: 2.5rem; font-family: var(--font-display); margin-bottom: 30px; display: block; }
.tier-desc { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 30px; min-height: 50px; }

.feature-list { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; flex-grow: 1; }
.feature-list li { 
    margin-bottom: 15px; color: var(--text-gray); font-size: 0.9rem; 
    display: flex; align-items: center; 
}
.feature-list i { color: var(--accent-color); margin-right: 10px; }

/* --- A LA CARTE --- */
.extras-section { padding: 60px 0; background-color: var(--bg-off-white); }
.extra-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; border-bottom: 1px solid #ddd;
}
.extra-name { font-weight: 600; font-size: 1.1rem; }
.extra-price { font-family: var(--font-display); font-size: 1.2rem; }

/* --- FAQ --- */
.faq-section { padding: 80px 0; }
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: rgba(0,0,0,0.1); }
.accordion-item { border: none; border-bottom: 1px solid #eee; }
.accordion-button { font-family: var(--font-display); font-size: 1.1rem; padding: 20px 0; }
.accordion-body { padding: 0 0 20px; color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; }

/* -------- WORK SECTION -------- */

/* --- FILTERS --- */
.filter-bar {
    display: flex; justify-content: center; gap: 20px;
    margin-bottom: 50px; flex-wrap: wrap;
}
.filter-btn {
    background: transparent; border: none;
    color: var(--text-gray); font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; padding-bottom: 5px;
    border-bottom: 2px solid transparent; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
    color: var(--primary-color); border-bottom-color: var(--primary-color);
}

/* --- ARCHIVE GRID (15 ITEMS) --- */
.archive-section { padding: 60px 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    background: #eee;
    aspect-ratio: 3/4; /* Consistent portrait ratio */
    overflow: hidden;
    cursor: pointer;
}

.gallery-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
    color: white; text-align: center; p: 20px;
}

.gallery-item:hover .gallery-img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.overlay-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 5px; }
.overlay-cat { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; }

/* --- LIGHTBOX --- */
#lightbox {
    position: fixed; inset: 0; background: rgba(255,255,255,0.98);
    z-index: 3000; display: none; align-items: center; justify-content: center;
}
#lightbox.active { display: flex; }
#lightboxImg { max-height: 85vh; max-width: 90vw; object-fit: contain; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.close-lightbox { position: absolute; top: 30px; right: 30px; font-size: 2rem; cursor: pointer; }
.lightbox-caption { position: absolute; bottom: 30px; left: 0; width: 100%; text-align: center; }

/* --- CLIENTS --- */
.clients-section { padding: 80px 0; border-top: 1px solid #eee; text-align: center; }
.client-logo { font-family: var(--font-display); font-size: 1.5rem; color: #ccc; margin: 0 30px; }

@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* -------- SHOP SECTION -------- */

/* --- PRODUCT CARDS (Adapted from Atelier) --- */
.product-card {
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    padding: 10px;
    position: relative;
}
.product-card:hover {
    border-color: #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transform: translateY(-5px);
}

.prod-img-box {
    position: relative;
    aspect-ratio: 1/1;
    background: #f4f4f4;
    overflow: hidden;
    margin-bottom: 15px;
}

.prod-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .prod-img { transform: scale(1.05); }

/* [INSTRUCTION] IMAGE PLACEHOLDER STYLE */
.img-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    color: #ccc; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}

.prod-title { font-size: 1rem; margin-bottom: 5px; font-weight: 600; }
.prod-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-gray); }
.prod-badge {
    position: absolute; top: 10px; left: 10px;
    background: white; padding: 4px 10px; font-size: 0.6rem;
    text-transform: uppercase; letter-spacing: 1px;
    z-index: 2;
}

/* --- WORKSHOPS SECTION --- */
.workshops-section { padding: 80px 0; background-color: #111; color: white; margin-top: 60px; }
.workshop-card {
    border: 1px solid #333; padding: 30px;
    transition: all 0.3s; background: #1a1a1a;
}
.workshop-card:hover { border-color: var(--accent-color); transform: translateY(-5px); }
.ws-date { color: var(--accent-color); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.ws-title { font-size: 1.5rem; margin-bottom: 15px; color: white; }
.ws-desc { color: #888; font-size: 0.9rem; margin-bottom: 25px; line-height: 1.6; }

/* --- PRODUCT MODAL --- */
.modal-content { border-radius: 0; border: none; }
.modal-body { padding: 0; }

.opt-btn {
    border: 1px solid #ddd; padding: 10px; width: 100%; text-align: center;
    cursor: pointer; margin-bottom: 10px; font-size: 0.85rem; transition: all 0.2s;
}
.opt-btn.active { border-color: var(--primary-color); background: #f9f9f9; font-weight: 600; }

/* --- CART OFFCANVAS --- */
.offcanvas { width: 400px; border-left: 1px solid #eee; }
.cart-item { display: flex; gap: 15px; padding: 20px 0; border-bottom: 1px solid #eee; align-items: center; }
.cart-thumb { width: 60px; height: 60px; background: #eee; object-fit: cover; }

@media (max-width: 768px) {
    .offcanvas { width: 100%; }
}

/* -------- BOOKING SECTION -------- */

/* --- MULTI-STEP FORM LAYOUT --- */
.booking-container {
    max-width: 800px; margin: 60px auto; padding: 0 20px;
}

.progress-bar-wrap {
    display: flex; justify-content: space-between; margin-bottom: 50px; position: relative;
}
.progress-line {
    position: absolute; top: 15px; left: 0; width: 100%; height: 2px; background: #eee; z-index: 0;
}
.step-indicator {
    width: 30px; height: 30px; background: white; border: 2px solid #ddd; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 1; font-weight: 700; font-size: 0.8rem;
    transition: all 0.3s;
}
.step-indicator.active { border-color: var(--primary-color); background: var(--primary-color); color: white; }
.step-indicator.completed { border-color: var(--accent-color); background: var(--accent-color); color: white; }

.form-step { display: none; animation: fadeIn 0.5s; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- FORM ELEMENTS --- */
.form-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--text-gray); }
.form-control, .form-select {
    border: none; border-bottom: 1px solid #ddd; border-radius: 0; padding: 15px 0;
    font-family: var(--font-display); font-size: 1.1rem; background: transparent;
}
.form-control:focus, .form-select:focus { box-shadow: none; border-color: var(--primary-color); }

.summary-card {
    background: var(--bg-off-white); padding: 30px; border: 1px solid #eee; margin-top: 30px;
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.9rem; }
.summary-total { font-family: var(--font-display); font-size: 1.5rem; border-top: 1px solid #ddd; padding-top: 15px; margin-top: 15px; }

/* --- PRE-SHOOT GUIDE --- */
.guide-section { padding: 60px 0; background-color: var(--bg-off-white); margin-top: 80px; }
.guide-icon { font-size: 2rem; color: var(--accent-color); margin-bottom: 15px; }
.guide-title { font-size: 1.1rem; margin-bottom: 10px; }
.guide-text { font-size: 0.9rem; color: var(--text-gray); }