/* ============================================
   LENS & LIGHT — Main CSS
   Dark Premium Photography Portfolio
   ============================================ */

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

/* ── Variables ─────────────────────────────── */
:root {
  --bg:          #080808;
  --bg-2:        #111111;
  --bg-3:        #191919;
  --surface:     #1e1e1e;
  --border:      rgba(255,255,255,0.08);
  --gold:        #c9a96e;
  --gold-light:  #e2c99a;
  --gold-dark:   #a07840;
  --text:        #e0e0e0;
  --text-muted:  #888;
  --text-dim:    #555;
  --white:       #ffffff;
  --overlay:     rgba(0,0,0,0.6);
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.7);
  --transition:  0.3s ease;
  --font-body:   'Inter', sans-serif;
  --font-head:   'Playfair Display', serif;
  --nav-h:       70px;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Preloader ─────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 4px;
  animation: pulse 1.5s ease infinite;
}
.preloader-bar {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--gold);
  animation: loading 1.8s ease forwards;
}
@keyframes loading { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── Header ─────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
#site-header.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  --nav-h: 58px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1400px; margin: 0 auto;
}
.site-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
  display: flex; align-items: center; gap: 0.5rem;
}
.site-logo span { color: var(--gold); }
.site-logo img { height: 40px; width: auto; }

/* ── Navigation ─────────────────────────────── */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block; padding: 0.5rem 1rem;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text);
  transition: color var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li.active > a { color: var(--gold); }

/* Dropdown */
.main-nav .dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 200px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
}
.main-nav > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block; padding: 0.6rem 1.25rem;
  font-size: 0.85rem; color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.dropdown li a:hover { color: var(--gold); background: rgba(201,169,110,0.07); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-icon {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: color var(--transition);
  position: relative;
}
.header-icon:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: #000;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 26px; cursor: pointer;
}
.menu-toggle span {
  display: block; height: 2px; background: var(--text);
  transition: all 0.3s ease; border-radius: 2px;
}

/* ── Hero Slider ─────────────────────────────── */
.hero-slider {
  position: relative; height: 100vh; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.85) 100%);
}
.hero-content {
  position: absolute; bottom: 12%; left: 50%; transform: translateX(-50%);
  text-align: center; width: 90%; max-width: 800px;
  animation: fadeUp 1s ease 0.5s both;
}
.hero-tagline {
  font-size: 0.8rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white); line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Slider Controls */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); z-index: 10; cursor: pointer;
  transition: all var(--transition);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }
.slider-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: 2px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; transition: all var(--transition);
}
.btn-gold {
  background: var(--gold); color: #0a0a0a;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--bg-2); color: var(--text); border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.85rem; }

/* ── Section Styles ─────────────────────────── */
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }
.container { max-width: 1300px; margin: 0 auto; }
.container-wide { max-width: 1500px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white); line-height: 1.2;
}
.section-subtitle {
  margin-top: 1rem; color: var(--text-muted);
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.section-divider {
  width: 50px; height: 2px; background: var(--gold);
  margin: 1.5rem auto 0;
}

/* ── Gallery Grid ─────────────────────────────── */
.gallery-grid {
  columns: 3; gap: 1rem;
}
.gallery-grid-4 { columns: 4; }
.gallery-grid-2 { columns: 2; }
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-info .title {
  font-family: var(--font-head); font-size: 1rem; color: var(--white);
}
.gallery-item-info .category {
  font-size: 0.75rem; color: var(--gold); letter-spacing: 1px; margin-top: 0.25rem;
}

/* Filter Tabs */
.filter-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.4rem 1.2rem; border-radius: 2px;
  font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,169,110,0.08);
}

/* ── Product Grid ─────────────────────────────── */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-2); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,110,0.2);
}
.product-card-image {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.product-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: #000;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 0.3rem 0.75rem;
}
.product-card-body { padding: 1.25rem; }
.product-card-collection {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.product-card-title {
  font-family: var(--font-head); font-size: 1.1rem;
  color: var(--white); margin-bottom: 0.5rem; line-height: 1.3;
}
.product-card-desc {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 1rem;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.product-price {
  font-size: 0.85rem; color: var(--text-muted);
}
.product-price span {
  display: block; font-size: 1.1rem; color: var(--gold); font-weight: 600;
}

/* ── Blog Grid ─────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--bg-2); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card-image { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  display: flex; gap: 1rem; align-items: center;
  font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.75rem;
}
.blog-card-meta .tag {
  color: var(--gold); letter-spacing: 1px; text-transform: uppercase;
}
.blog-card-title {
  font-family: var(--font-head); font-size: 1.2rem;
  color: var(--white); margin-bottom: 0.75rem; line-height: 1.3;
  transition: color var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.2rem; font-size: 0.78rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  transition: gap var(--transition);
}
.read-more:hover { gap: 0.7rem; }

/* ── Workshop Card ─────────────────────────────── */
.workshop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.workshop-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.workshop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.workshop-card-image { aspect-ratio: 3/2; overflow: hidden; }
.workshop-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.workshop-card:hover .workshop-card-image img { transform: scale(1.05); }
.workshop-card-body { padding: 1.5rem; background: var(--bg-2); }
.workshop-card-year {
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.workshop-card-title {
  font-family: var(--font-head); font-size: 1.2rem;
  color: var(--white); margin-bottom: 0.75rem;
}
.workshop-card-meta {
  display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: var(--text-muted);
}
.workshop-card-meta i { color: var(--gold); margin-right: 0.3rem; }
.workshop-spots {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem; font-size: 0.78rem;
}
.spots-pill {
  background: rgba(201,169,110,0.15); color: var(--gold);
  padding: 0.2rem 0.7rem; border-radius: 20px;
  font-size: 0.72rem; letter-spacing: 1px;
}

/* ── Lightbox ─────────────────────────────────── */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: -2.5rem; right: 0;
  color: var(--text-muted); font-size: 1.5rem;
  cursor: pointer; transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-info {
  padding: 1.25rem 0.5rem 0;
  text-align: center;
}
.lightbox-info .title { font-family: var(--font-head); color: var(--white); font-size: 1.1rem; }
.lightbox-info .meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer; transition: all var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: #000; }
.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }

/* ── Cart Indicator ─────────────────────────── */
.mini-cart {
  position: fixed; top: var(--nav-h); right: 0;
  width: 380px; max-height: calc(100vh - var(--nav-h));
  background: var(--bg-2); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 999; display: flex; flex-direction: column; overflow: hidden;
}
.mini-cart.open { transform: translateX(0); }
.mini-cart-header {
  padding: 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.mini-cart-title { font-family: var(--font-head); color: var(--white); }
.mini-cart-close { color: var(--text-muted); cursor: pointer; }
.mini-cart-close:hover { color: var(--gold); }
.mini-cart-items { flex: 1; overflow-y: auto; padding: 1rem; }
.mini-cart-item {
  display: flex; gap: 1rem; padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.mini-cart-item-img { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius); }
.mini-cart-item-info { flex: 1; }
.mini-cart-item-name { font-size: 0.88rem; color: var(--text); margin-bottom: 0.25rem; }
.mini-cart-item-meta { font-size: 0.75rem; color: var(--text-muted); }
.mini-cart-item-price { font-weight: 600; color: var(--gold); font-size: 0.9rem; }
.mini-cart-footer { padding: 1.5rem; border-top: 1px solid var(--border); }
.mini-cart-total {
  display: flex; justify-content: space-between;
  margin-bottom: 1rem; font-size: 1rem; color: var(--white);
}
.mini-cart-total span { color: var(--gold); font-weight: 700; }

/* ── Forms ─────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
}
.form-control {
  width: 100%; padding: 0.85rem 1.1rem;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 0.9rem; transition: border-color var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--gold);
  background: rgba(201,169,110,0.04);
}
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }

/* ── Flash Messages ─────────────────────────── */
.flash {
  padding: 1rem 1.5rem; border-radius: var(--radius);
  margin-bottom: 1.5rem; font-size: 0.9rem;
  border-left: 3px solid;
}
.flash-success { background: rgba(74,222,128,0.1); border-color: #4ade80; color: #4ade80; }
.flash-error { background: rgba(248,113,113,0.1); border-color: #f87171; color: #f87171; }
.flash-info { background: rgba(201,169,110,0.1); border-color: var(--gold); color: var(--gold); }

/* ── Hero Section Stats ─────────────────────── */
.stats-bar {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  padding: 2.5rem; background: var(--bg-2); border-top: 1px solid var(--border);
}
.stat-item {
  text-align: center; padding: 1rem 3rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head); font-size: 2.5rem;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.3rem;
}

/* ── Featured Collection ─────────────────────── */
.collection-hero {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/9;
}
.collection-hero img { width: 100%; height: 100%; object-fit: cover; }
.collection-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.collection-hero-title {
  font-family: var(--font-head); font-size: 2rem;
  color: var(--white); margin-bottom: 0.5rem;
}

/* ── About Bio ────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem;
  align-items: start;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 3/4; object-fit: cover;
}
.about-photo-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 60%; height: 60%; border: 2px solid var(--gold);
  border-radius: var(--radius-lg); z-index: -1;
}
.about-bio h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); margin-bottom: 1.5rem; line-height: 1.2;
}
.about-bio p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.about-awards { margin-top: 2.5rem; }
.award-item {
  display: flex; gap: 1.25rem; padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.award-year {
  font-family: var(--font-head); font-size: 1.2rem;
  color: var(--gold); min-width: 55px;
}
.award-text .title { color: var(--white); font-size: 0.92rem; margin-bottom: 0.2rem; }
.award-text .org { font-size: 0.8rem; color: var(--text-dim); }

/* ── Newsletter Band ──────────────────────────── */
.newsletter-band {
  background: var(--bg-2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 5rem 2rem;
  text-align: center;
}
.newsletter-band h2 {
  font-family: var(--font-head); font-size: 2rem;
  color: var(--white); margin-bottom: 0.75rem;
}
.newsletter-band p { color: var(--text-muted); margin-bottom: 2rem; }
.newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto; gap: 0;
}
.newsletter-form input {
  flex: 1; padding: 0.85rem 1.25rem;
  background: var(--bg-3); border: 1px solid var(--border);
  border-right: none; border-radius: var(--radius) 0 0 var(--radius);
  color: var(--text); font-size: 0.9rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  padding: 0.85rem 1.75rem; background: var(--gold); color: #000;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ── Footer ─────────────────────────────────────── */
#site-footer {
  background: #050505; border-top: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo {
  font-family: var(--font-head); font-size: 1.3rem;
  color: var(--white); margin-bottom: 1rem;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-social {
  display: flex; gap: 0.75rem; margin-top: 1.5rem;
}
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.08); }
.footer-col h4 {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom a { color: var(--gold); }

/* ── Pagination ─────────────────────────────────── */
.pagination {
  display: flex; justify-content: center; gap: 0.5rem; margin-top: 4rem;
}
.page-link {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.85rem; color: var(--text-muted);
  transition: all var(--transition);
}
.page-link:hover, .page-link.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,169,110,0.08);
}

/* ── Breadcrumb ─────────────────────────────────── */
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.78rem; color: var(--text-dim);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--gold); }

/* ── Page Hero ─────────────────────────────────── */
.page-hero {
  height: 380px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.35);
}
.page-hero-content {
  position: relative; text-align: center; z-index: 1;
}
.page-hero-title {
  font-family: var(--font-head); font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white); line-height: 1.1; margin-bottom: 0.75rem;
}
.page-hero-subtitle { color: rgba(255,255,255,0.6); font-size: 1rem; }

/* ── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }

/* ── Utility ─────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.d-flex { display: flex; }
.gap-1 { gap: 1rem; }
.hr-gold { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }
.badge-award {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(201,169,110,0.12); color: var(--gold);
  padding: 0.25rem 0.75rem; border-radius: 20px;
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(201,169,110,0.2);
}

/* ── Admin Panel ─────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: #0d0d0d;
  border-right: 1px solid var(--border);
  position: fixed; top: 0; left: 0; height: 100vh;
  overflow-y: auto; z-index: 100;
}
.admin-logo {
  padding: 1.5rem; border-bottom: 1px solid var(--border);
  font-family: var(--font-head); font-size: 1.1rem; color: var(--white);
}
.admin-logo span { color: var(--gold); }
.admin-nav { padding: 1rem 0; }
.admin-nav-section {
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim); padding: 1rem 1.5rem 0.5rem;
}
.admin-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1.5rem; font-size: 0.85rem; color: var(--text-muted);
  transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
  color: var(--gold); background: rgba(201,169,110,0.06);
  border-right: 2px solid var(--gold);
}
.admin-nav a i { width: 18px; }
.admin-content { margin-left: 260px; padding: 2rem; width: calc(100% - 260px); }
.admin-topbar {
  background: var(--bg-2); border-radius: var(--radius-lg);
  padding: 1rem 1.5rem; margin-bottom: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--border);
}
.admin-page-title { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.stat-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(201,169,110,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; margin-bottom: 0.5rem;
}
.stat-card-value { font-size: 2rem; font-weight: 700; color: var(--white); }
.stat-card-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.admin-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-2); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.admin-table th {
  padding: 0.9rem 1.25rem; text-align: left;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 0.9rem 1.25rem; font-size: 0.88rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.table-actions { display: flex; gap: 0.5rem; }
.action-btn {
  padding: 0.3rem 0.75rem; border-radius: var(--radius);
  font-size: 0.75rem; font-weight: 500; transition: all var(--transition);
  border: 1px solid var(--border);
}
.action-btn-edit { color: var(--gold); border-color: rgba(201,169,110,0.3); }
.action-btn-edit:hover { background: rgba(201,169,110,0.1); }
.action-btn-delete { color: #f87171; border-color: rgba(248,113,113,0.3); }
.action-btn-delete:hover { background: rgba(248,113,113,0.1); }

/* ── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); line-height: 1.15; word-break: break-word; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 58px; }
  .main-nav { 
    display: flex; flex-direction: column; position: fixed; 
    top: var(--nav-h); left: 0; right: 0; bottom: 0; 
    background: var(--bg); padding: 2rem; overflow-y: auto; 
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > li > a { font-size: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; background: transparent; border: none; padding-left: 1rem; }
  .menu-toggle { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  .header-actions { gap: 0.6rem; }
  .site-logo { font-size: 1.2rem; }
  
  .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); line-height: 1.15; }
  .hero-buttons { flex-direction: column; gap: 0.75rem; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .slider-arrow { width: 40px; height: 40px; }
  .slider-prev { left: 0.5rem; }
  .slider-next { right: 0.5rem; }
  
  .gallery-grid { columns: 1; }
  .gallery-grid-2 { columns: 1; }
  .product-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; width: 100%; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .lightbox-prev { left: -1rem; }
  .lightbox-next { right: -1rem; }
  
  .newsletter-form { flex-direction: column; gap: 0.75rem; }
  .newsletter-form input { border-right: 1px solid var(--border); border-radius: var(--radius); }
  .newsletter-form button { border-radius: var(--radius); }
  .mini-cart { width: 100%; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 1rem; }
  .hero-title { font-size: clamp(1.8rem, 12vw, 2.5rem); word-break: break-word; }
  .hero-subtitle { font-size: 0.95rem; }
  .stat-cards { grid-template-columns: 1fr; }
  #site-header { padding: 0 1rem; }
  .header-actions { gap: 0.4rem; }
  .header-icon { width: 32px; height: 32px; font-size: 0.9rem; }
}
