/* ======================================================
   BURSTS OF LIGHT — Main Stylesheet
   Photography Portfolio & Print Shop
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg:         #f7f4ef;
  --bg-raised:  #edeae3;
  --bg-card:    #ffffff;
  --bg-hover:   #e5e2db;
  --text:       #1c1c1c;
  --text-muted: #5a5a5a;
  --text-faint: #9a9a9a;
  --text-on-photo: rgba(255,255,255,0.9);
  --gold:       #b8922c;
  --gold-light: #d4a840;
  --gold-dark:  #7a5e1a;
  --white:      #ffffff;
  --border:           rgba(0,0,0,0.1);
  --border-gold:      rgba(184,146,44,0.3);
  --nav-h:      72px;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --display:    'Space Grotesk', system-ui, sans-serif;
  --tshadow-sm: 0 1px 6px rgba(0,0,0,0.7);
  --tshadow-md: 0 2px 12px rgba(0,0,0,0.8), 0 1px 3px rgba(0,0,0,0.6);
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.1);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.15);
  --shadow-lg:  0 24px 72px rgba(0,0,0,0.25);
  --r-sm: 3px;
  --r-md: 8px;
  --r-lg: 14px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--gold); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-raised); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
.eyebrow {
  font-family: var(--display);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.section-title { font-size: clamp(2.4rem,5.5vw,4.2rem); color: var(--text); }
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.75; max-width: 500px; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem,5vw,4rem);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled, .nav.nav-solid {
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(20px) saturate(150%);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  letter-spacing: 0.03em; color: var(--white); white-space: nowrap;
  text-shadow: var(--tshadow-sm);
}
.nav.scrolled .nav-logo, .nav.nav-solid .nav-logo { color: var(--text); text-shadow: none; }
.nav-logo span { color: var(--gold-light); }
.nav.scrolled .nav-logo span, .nav.nav-solid .nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-family: var(--display); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); position: relative;
  transition: color 0.3s;
  text-shadow: var(--tshadow-sm);
}
.nav.scrolled .nav-links a, .nav.nav-solid .nav-links a { color: var(--text-muted); text-shadow: none; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); text-shadow: var(--tshadow-sm); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active,
.nav.nav-solid .nav-links a:hover, .nav.nav-solid .nav-links a.active { color: var(--text); text-shadow: none; }
.nav-cart {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.3); border-radius: var(--r-sm);
  transition: all 0.3s; text-shadow: var(--tshadow-sm);
}
.nav.scrolled .nav-cart, .nav.nav-solid .nav-cart { color: var(--text-muted); border-color: var(--border); text-shadow: none; }
.nav-cart:hover { color: var(--white); border-color: var(--gold); background: rgba(184,146,44,0.1); text-shadow: none; }
.nav.scrolled .nav-cart:hover, .nav.nav-solid .nav-cart:hover { color: var(--text); background: rgba(184,146,44,0.08); }
.cart-badge {
  background: var(--gold); color: var(--white);
  font-size: 0.58rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-badge.show { display: flex; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.nav.scrolled .nav-burger span, .nav.nav-solid .nav-burger span { background: var(--text); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 5000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--serif); font-size: 2.5rem; color: var(--text-muted); transition: color 0.3s; }
.mobile-nav a:hover { color: var(--text); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem; color: var(--text-muted); padding: 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  transform: scale(1.03);
}
.hero-slide.active { opacity: 1; animation: heroZoom 8s ease-out forwards; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.45) 0%,
    rgba(8,8,8,0.05) 30%,
    rgba(8,8,8,0.55) 65%,
    rgba(8,8,8,0.97) 100%
  );
}
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1); } }

.hero-content {
  position: relative; z-index: 2;
  padding: clamp(2.5rem,8vw,6rem);
  max-width: 860px;
}
.hero-eyebrow {
  font-family: var(--display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.25rem;
  text-shadow: var(--tshadow-md);
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(3.8rem,11vw,8.5rem);
  font-weight: 300; line-height: 0.92; color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: var(--tshadow-md);
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 1s 0.5s var(--ease) forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.88);
  line-height: 1.75; max-width: 440px; margin-bottom: 2.5rem;
  text-shadow: var(--tshadow-sm);
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s 0.7s var(--ease) forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s 0.9s var(--ease) forwards;
}
.hero-scroll-hint {
  position: absolute; right: clamp(1.5rem,4vw,3rem); bottom: 2.5rem;
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0; animation: fadeIn 1s 1.8s forwards;
}
.hero-scroll-hint span {
  font-family: var(--display); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-shadow: var(--tshadow-sm);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s 2s ease infinite;
}
.hero-dots {
  position: absolute; left: clamp(1.5rem,4vw,3rem); bottom: 2.5rem;
  z-index: 2; display: flex; gap: 6px; align-items: center;
}
.hero-dot {
  width: 24px; height: 2px; background: rgba(255,255,255,0.25);
  border-radius: 1px; cursor: pointer; transition: all 0.3s;
}
.hero-dot.active { background: var(--gold); width: 40px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: var(--r-sm);
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,146,44,0.3); }

/* btn-outline: dark by default (on light page backgrounds) */
.btn-outline { border: 1px solid rgba(0,0,0,0.2); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,146,44,0.06); }

/* btn-outline inside hero / parallax (over dark photo) stays white */
.hero .btn-outline,
.parallax-banner .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }
.hero .btn-outline:hover,
.parallax-banner .btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(184,146,44,0.08); }

.btn-ghost { color: var(--gold); padding: 0.9rem 0; border-bottom: 1px solid var(--gold-dark); border-radius: 0; }
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); transform: translateX(4px); }
.btn svg { flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: clamp(5rem,10vw,8rem) clamp(1.5rem,5vw,4rem); }
.section-hd { margin-bottom: clamp(3rem,5vw,5rem); }
.section-hd .eyebrow { margin-bottom: 1rem; }
.divider { width: 48px; height: 1px; background: var(--gold-dark); margin: 1.5rem 0; }

/* ===== FEATURED MOSAIC ===== */
.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 340px 280px;
  gap: 3px;
}
.mosaic-item { position: relative; overflow: hidden; cursor: pointer; }
.mosaic-item:first-child { grid-row: 1 / 3; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); filter: brightness(0.88); }
.mosaic-item:hover img { transform: scale(1.05); filter: brightness(1); }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s; display: flex; align-items: flex-end; padding: 1.5rem;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-label { font-family: var(--serif); font-size: 1.15rem; color: var(--white); text-shadow: var(--tshadow-md); }

/* ===== COLLECTIONS ===== */
.collections { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; }
.coll-card {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  aspect-ratio: 3/4; cursor: pointer; display: block;
  transition: transform 0.4s var(--ease);
}
.coll-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.coll-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); filter: brightness(0.75); }
.coll-card:hover img { transform: scale(1.07); filter: brightness(0.65); }
.coll-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.2) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
}
.coll-name { font-family: var(--serif); font-size: 1.7rem; color: var(--white); margin-bottom: 0.4rem; text-shadow: var(--tshadow-sm); }
.coll-count { font-family: var(--display); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); text-shadow: var(--tshadow-sm); }

/* ===== GALLERY PAGE ===== */
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: var(--display); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2rem; color: var(--text-muted); transition: all 0.25s;
}
.filter-btn:hover { color: var(--text); border-color: rgba(0,0,0,0.28); background: rgba(0,0,0,0.04); }
.filter-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

.masonry { columns: 4; column-gap: 3px; }
.m-item {
  break-inside: avoid; margin-bottom: 3px;
  position: relative; overflow: hidden; cursor: pointer;
  transition: opacity 0.4s;
}
.m-item img { width: 100%; display: block; transition: transform 0.6s var(--ease); filter: brightness(0.95); }
.m-item:hover img { transform: scale(1.04); filter: brightness(1); }
.m-hover {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.m-item:hover .m-hover { opacity: 1; }
.m-icon {
  width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); transform: scale(0.7); transition: transform 0.3s var(--ease-back);
}
.m-item:hover .m-icon { transform: scale(1); }
.m-icons { display: flex; gap: 0.75rem; align-items: center; }
.m-item.hidden { display: none; }
.m-sale-badge {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  background: rgba(8,8,8,0.82); border: 1px solid var(--border-gold);
  color: var(--gold-light); font-family: var(--display); font-size: 0.5rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 0.28rem 0.65rem; border-radius: 2rem;
  backdrop-filter: blur(6px); pointer-events: none;
}
.gallery-section-hd {
  padding: 2.5rem 0 1.25rem; border-top: 2px solid var(--gold-dark);
  margin-bottom: 0.25rem;
}
.gallery-section-hd + .masonry { margin-top: 0; }
.gallery-section-hd--more { border-top: 1px solid var(--border); margin-top: 3rem; }
.gallery-section-label {
  font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem;
}
.gallery-section-label--muted { color: var(--text-muted); }
.gallery-section-count { font-size: 0.8rem; color: var(--text-muted); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-inner { position: relative; max-width: 92vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.lb-img { max-width: 92vw; max-height: 82vh; object-fit: contain; box-shadow: var(--shadow-lg); }
.lb-cap { margin-top: 1rem; font-family: var(--serif); font-size: 1rem; color: rgba(255,255,255,0.55); text-align: center; }
.lb-close, .lb-prev, .lb-next {
  position: fixed; z-index: 2001;
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 1.1rem; transition: all 0.3s;
}
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--white); border-color: var(--gold); background: rgba(184,146,44,0.08); }

/* ===== SHOP GRID ===== */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 2px; }
.product {
  background: var(--bg-card); overflow: hidden; cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  border: 1px solid var(--border);
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.product-img {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); filter: brightness(0.92); }
.product:hover .product-img img { transform: scale(1.06); filter: brightness(1); }
.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--display); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gold); color: var(--white);
  padding: 0.28rem 0.65rem; border-radius: var(--r-sm);
}
.product-qv {
  position: absolute; inset: 0; background: rgba(8,8,8,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.product:hover .product-qv { opacity: 1; }
.qv-btn {
  font-family: var(--display); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(255,255,255,0.45);
  padding: 0.65rem 1.4rem; border-radius: var(--r-sm);
  transform: translateY(10px); opacity: 0;
  transition: all 0.3s var(--ease-back);
}
.product:hover .qv-btn { transform: translateY(0); opacity: 1; border-color: var(--gold); }
.product-body { padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--border); }
.product-cat { font-family: var(--display); font-size: 0.61rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.product-title { font-family: var(--serif); font-size: 1.25rem; color: var(--text); margin-bottom: 0.4rem; }
.product-from { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.product-from strong { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.product-foot { padding: 0.9rem 1.4rem; display: flex; gap: 0.6rem; }
.btn-cart {
  flex: 1; font-family: var(--display); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.7rem; background: var(--gold); color: var(--white);
  border-radius: var(--r-sm); transition: all 0.3s; text-align: center;
}
.btn-cart:hover { background: var(--gold-light); box-shadow: 0 4px 16px rgba(184,146,44,0.25); }
.btn-wish {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  color: var(--text-muted); transition: all 0.3s;
}
.btn-wish:hover { border-color: var(--gold); color: var(--gold); }

/* ===== PRODUCT MODAL ===== */
.prod-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.prod-modal.open { opacity: 1; pointer-events: all; }
.pm-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(12px); }
.pm-inner {
  position: relative; z-index: 1;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); width: 100%; max-width: 880px;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
}
.pm-img { position: relative; min-height: 380px; }
.pm-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg) 0 0 var(--r-lg); }
.pm-body { padding: 2.5rem; display: flex; flex-direction: column; }
.pm-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 34px; height: 34px; background: rgba(0,0,0,0.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; transition: all 0.3s;
}
.pm-close:hover { background: rgba(0,0,0,0.7); }
.pm-cat { font-family: var(--display); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.65rem; }
.pm-title { font-family: var(--serif); font-size: 2rem; color: var(--text); margin-bottom: 0.75rem; }
.pm-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; flex: 1; }
.opt-label { font-family: var(--display); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.65rem; display: block; }
.opt-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.5rem; }
.opt-btn {
  font-family: var(--display); font-size: 0.64rem; font-weight: 500; letter-spacing: 0.08em;
  padding: 0.45rem 0.85rem; border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text-muted); transition: all 0.25s;
}
.opt-btn:hover { color: var(--text); border-color: rgba(0,0,0,0.25); }
.opt-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(184,146,44,0.07); }
.type-btn { padding: 0.5rem 1rem; font-size: 0.63rem; }
.size-btn { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; padding: 0.5rem 0.75rem; min-width: 64px; }
.opt-price { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); transition: color 0.25s; }
.size-btn.active .opt-price { color: var(--gold); }
.size-btn:hover .opt-price { color: var(--text); }
.type-desc {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.65;
  margin-bottom: 1.25rem; margin-top: -0.5rem;
  padding: 0.75rem 0.85rem; background: rgba(0,0,0,0.03);
  border-left: 2px solid var(--gold-dark); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  min-height: 2.5rem;
}
.pm-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.25rem; }
.pm-price { font-family: var(--serif); font-size: 2.2rem; color: var(--text); }
.pm-price-note { font-size: 0.76rem; color: var(--text-muted); }
.pm-add {
  width: 100%; padding: 1rem; background: var(--gold); color: var(--white);
  font-family: var(--display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--r-sm); transition: all 0.3s; margin-bottom: 0.75rem;
}
.pm-add:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(184,146,44,0.3); }
.pm-guarantee { font-size: 0.74rem; color: var(--text-muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.35rem; }

/* ===== CART SIDEBAR ===== */
.cart-overlay { position: fixed; inset: 0; z-index: 2900; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 95vw;
  background: var(--bg-card); border-left: 1px solid var(--border);
  z-index: 3000; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s var(--ease-out);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-hd {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-hd h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--text); }
.cart-hd button {
  width: 34px; height: 34px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem; transition: all 0.3s;
}
.cart-hd button:hover { color: var(--text); border-color: rgba(0,0,0,0.25); }
.cart-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.75rem; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 1rem; color: var(--text-faint); text-align: center; }
.cart-empty p { font-size: 0.88rem; }
.cart-item {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 1rem; align-items: start; padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.ci-img { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 4/3; }
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-name { font-family: var(--serif); font-size: 0.95rem; color: var(--text); margin-bottom: 0.2rem; }
.ci-meta { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }
.ci-price { font-size: 0.9rem; color: var(--text); white-space: nowrap; }
.ci-remove { font-size: 0.64rem; color: var(--text-muted); text-decoration: underline; cursor: pointer; transition: color 0.2s; margin-top: 0.3rem; display: block; }
.ci-remove:hover { color: var(--text); }
.cart-ft { padding: 1.5rem 1.75rem; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.ct-label { font-family: var(--display); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.ct-price { font-family: var(--serif); font-size: 1.6rem; color: var(--text); }
.cart-cta {
  width: 100%; padding: 1rem; background: var(--gold); color: var(--white);
  font-family: var(--display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--r-sm); transition: all 0.3s; margin-bottom: 0.65rem;
}
.cart-cta:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(184,146,44,0.3); }
.cart-keep { display: block; text-align: center; font-family: var(--display); font-size: 0.64rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); padding: 0.5rem; transition: color 0.3s; }
.cart-keep:hover { color: var(--text); }
.cart-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.cp { display: flex; align-items: flex-start; gap: 0.4rem; font-size: 0.7rem; color: var(--text-muted); line-height: 1.4; }
.cp svg { flex-shrink: 0; color: var(--gold); margin-top: 1px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,8vw,7rem); align-items: center; }
.about-imgs { position: relative; height: 580px; }
.about-main { position: absolute; right: 0; top: 0; width: 78%; height: 78%; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.about-accent { position: absolute; left: 0; bottom: 0; width: 52%; height: 52%; object-fit: cover; border-radius: var(--r-md); border: 4px solid var(--bg); box-shadow: var(--shadow-md); }
.about-badge {
  position: absolute; top: 48%; left: 46%; transform: translate(-50%,-50%);
  background: var(--gold); color: var(--white); padding: 0.8rem 1.1rem;
  border-radius: var(--r-sm); text-align: center; box-shadow: var(--shadow-md); z-index: 2;
}
.about-badge .big { font-family: var(--serif); font-size: 2rem; line-height: 1; display: block; }
.about-badge .sm { font-family: var(--display); font-size: 0.52rem; letter-spacing: 0.15em; text-transform: uppercase; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.1rem; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; padding: 1.75rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 1.75rem 0; }
.ast .num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.ast .lbl { font-family: var(--display); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.2rem; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.75rem; }
.process-step { padding: 2rem; border: 1px solid var(--border); border-radius: var(--r-md); transition: border-color 0.3s, background 0.3s; }
.process-step:hover { border-color: var(--border-gold); background: var(--bg-raised); }
.ps-num { font-family: var(--serif); font-size: 3.2rem; color: var(--gold-dark); opacity: 0.45; line-height: 1; margin-bottom: 1rem; }
.process-step h4 { font-family: var(--serif); font-size: 1.15rem; color: var(--text); margin-bottom: 0.65rem; }
.process-step p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ===== BANNER ===== */
.parallax-banner {
  position: relative; height: 65vh; min-height: 380px;
  display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden;
}
.pb-bg {
  position: absolute; inset: -15%;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.pb-bg::after { content: ''; position: absolute; inset: 0; background: rgba(8,8,8,0.72); }
.pb-content { position: relative; z-index: 1; padding: 2rem; max-width: 650px; }
.pb-content .eyebrow { margin-bottom: 1rem; text-shadow: var(--tshadow-sm); color: var(--gold-light); }
.pb-content .section-title { margin: 0.5rem 0 1rem; text-shadow: var(--tshadow-md); color: var(--white); }
.pb-content .section-sub {
  margin: 0 auto 2rem; text-align: center;
  color: rgba(255,255,255,0.82);
  text-shadow: var(--tshadow-sm);
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(3rem,7vw,6rem); }
.ci-text h2 { margin-bottom: 1.2rem; }
.ci-text p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.ci-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 0.88rem; color: var(--text-muted); }
.cid-icon { width: 38px; height: 38px; border: 1px solid var(--border-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label { font-family: var(--display); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.fg input, .fg textarea, .fg select {
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 0.82rem 1rem; font-size: 0.88rem; color: var(--text);
  transition: border-color 0.3s; outline: none; width: 100%;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gold-dark); }
.fg textarea { resize: vertical; min-height: 130px; }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%23888' stroke-width='1.2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-raised); border-top: 1px solid var(--border); padding: clamp(3rem,7vw,5rem) clamp(1.5rem,5vw,4rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { font-size: 1.5rem; display: block; margin-bottom: 0.9rem; text-shadow: none; color: var(--text); }
.footer-brand .nav-logo span { color: var(--gold); }
.footer-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.7rem; }
.soc { width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.8rem; transition: all 0.3s; }
.soc:hover { border-color: var(--gold); color: var(--gold); }
.fc h5 { font-family: var(--display); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); margin-bottom: 1.2rem; }
.fc a { display: block; font-size: 0.86rem; color: var(--text-muted); transition: color 0.3s; padding: 0.28rem 0; }
.fc a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.76rem; color: var(--text-faint); }

/* ===== PAGE HEADER ===== */
.page-hd {
  padding-top: calc(var(--nav-h) + 4.5rem); padding-bottom: 3.5rem;
  padding-left: clamp(1.5rem,5vw,4rem); padding-right: clamp(1.5rem,5vw,4rem);
  border-bottom: 1px solid var(--border);
}
.page-hd h1 { margin-top: 0.75rem; }

/* ===== TOAST ===== */
.toast-wrap { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; pointer-events: none; }
.toast {
  background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: var(--r-md);
  padding: 0.85rem 1.4rem; font-size: 0.84rem; color: var(--text);
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow-md); white-space: nowrap;
  animation: toastIn 0.4s var(--ease-back) forwards;
}
.toast svg { color: var(--gold); flex-shrink: 0; }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; } .reveal.d2 { transition-delay: 0.2s; } .reveal.d3 { transition-delay: 0.3s; } .reveal.d4 { transition-delay: 0.4s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.3; transform: scaleY(0.5); } }

/* ===== MISC ===== */
.tag { display: inline-block; font-family: var(--display); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.28rem 0.75rem; border: 1px solid var(--border-gold); border-radius: 2rem; color: var(--gold); }
.gold { color: var(--gold); }
.tc { text-align: center; }

/* ===== RESPONSIVE ===== */
/* ===== HOME ABOUT BTN ALIGNMENT ===== */
.home-about .btn-ghost { display: inline-flex; margin-top: 0.5rem; }

@media (max-width: 1100px) { .masonry { columns: 3; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .about-imgs { height: 380px; } .contact-grid { grid-template-columns: 1fr; } .pm-inner { grid-template-columns: 1fr; } .pm-img { min-height: 260px; } .pm-img img { border-radius: var(--r-lg) var(--r-lg) 0 0; } }
@media (max-width: 768px) { .masonry { columns: 2; } .mosaic { grid-template-columns: 1fr; grid-template-rows: auto; } .mosaic-item:first-child { grid-row: 1; } .nav-links, .nav-cart { display: none; } .nav-burger { display: flex; } .collections { grid-template-columns: 1fr 1fr; } .form-row { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .shop-grid { grid-template-columns: 1fr 1fr; } .about-stats { grid-template-columns: 1fr; gap: 0.75rem; } }
@media (max-width: 480px) { .masonry { columns: 1; } .collections { grid-template-columns: 1fr; } .shop-grid { grid-template-columns: 1fr; } .hero-ctas { flex-direction: column; } }
