/* ============================================================
   DEFOE & MITCHELLS — MAISON NOIR DESIGN SYSTEM
   Pure CSS — no build step required
   Palette: Obsidian black + antique champagne gold + forest emerald
   Typography: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background-color: #0d0d10;
  color: #ede8df;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── COLOUR TOKENS ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #dfc07a;
  --gold-dark:   #8a6e2a;
  --obsidian:    #0d0d10;
  --obsidian-2:  #111116;
  --obsidian-3:  #16161c;
  --obsidian-4:  #0a0a0d;
  --cream:       #ede8df;
  --cream-dim:   #b8b0a0;
  --cream-muted: #7a7060;
  --cream-faint: #4a4438;
  --border:      rgba(255,255,255,0.08);
  --border-gold: rgba(201,168,76,0.3);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--cream);
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ── UTILITY ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.hidden { display: none !important; }

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── GOLD RULE ── */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
}

/* ── ORNAMENT ── */
.ornament::before { content: '◆'; font-size: 0.4rem; color: var(--gold); margin-right: 0.5rem; vertical-align: middle; }
.ornament::after  { content: '◆'; font-size: 0.4rem; color: var(--gold); margin-left: 0.5rem; vertical-align: middle; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 220ms cubic-bezier(0.23,1,0.32,1);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 280ms cubic-bezier(0.23,1,0.32,1);
}
.btn-gold:hover::before { transform: scaleX(1); }
.btn-gold:hover { color: var(--obsidian); }
.btn-gold span { position: relative; z-index: 1; }
.btn-gold:active { transform: scale(0.97); }

.btn-gold-filled {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--obsidian);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 220ms cubic-bezier(0.23,1,0.32,1);
  cursor: pointer;
}
.btn-gold-filled:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-gold-filled:active { transform: scale(0.97); }

/* ── GOLD SHIMMER TEXT ── */
.text-gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up   { animation: fadeUp 0.7s cubic-bezier(0.23,1,0.32,1) both; }
.fade-in   { animation: fadeIn 0.6s ease-out both; }
.d1 { animation-delay: 100ms; }
.d2 { animation-delay: 200ms; }
.d3 { animation-delay: 300ms; }
.d4 { animation-delay: 400ms; }
.d5 { animation-delay: 500ms; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.4); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.7); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  width: 100%; background: var(--gold);
  padding: 0.5rem 1rem; text-align: center;
}
.announcement-bar p {
  color: var(--obsidian); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  width: 100%;
  background: var(--obsidian);
  transition: background 300ms, box-shadow 300ms;
}
.navbar.scrolled {
  background: rgba(13,13,16,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem;
}
@media (min-width: 1024px) { .navbar-inner { padding: 0 3rem; } }

.nav-left, .nav-right {
  display: none;
  align-items: center; gap: 2rem;
}
@media (min-width: 1024px) { .nav-left, .nav-right { display: flex; } }

.nav-link {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 200ms;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-logo {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; user-select: none;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream); font-size: 1.25rem;
  font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-sub {
  font-size: 0.5rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-top: 0.125rem;
}

.nav-icons { display: flex; align-items: center; gap: 1rem; }
.nav-icon-btn {
  color: var(--cream-dim); transition: color 200ms; cursor: pointer;
  background: none; border: none; padding: 0;
}
.nav-icon-btn:hover { color: var(--gold); }
.nav-icon-btn svg { width: 18px; height: 18px; stroke-width: 1.5; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--cream-dim); transition: all 300ms;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  padding: 1.5rem; gap: 1.25rem;
  background: var(--obsidian);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-dim);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--obsidian-4);
  border-top: 1px solid var(--border);
}
.footer-newsletter {
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-newsletter-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .footer-newsletter-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 0 3rem; }
}
.footer-newsletter h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; color: var(--cream);
}
.footer-email-form { display: flex; width: 100%; }
@media (min-width: 1024px) { .footer-email-form { width: auto; } }
.footer-email-form input {
  flex: 1; width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  padding: 0.75rem 1rem;
  font-size: 0.875rem; color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 200ms;
}
@media (min-width: 1024px) { .footer-email-form input { width: 18rem; } }
.footer-email-form input::placeholder { color: var(--cream-faint); }
.footer-email-form input:focus { border-color: var(--gold); }
.footer-email-form button {
  padding: 0.75rem 1.5rem;
  background: var(--gold); border: 1px solid var(--gold);
  color: var(--obsidian);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: background 200ms;
  font-family: 'DM Sans', sans-serif;
}
.footer-email-form button:hover { background: var(--gold-dark); }

.footer-main {
  max-width: 1400px; margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; padding: 4rem 3rem; } }

.footer-brand p {
  font-size: 0.875rem; color: var(--cream-muted);
  line-height: 1.7; max-width: 20rem; margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  color: var(--cream-muted); transition: color 200ms;
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; stroke-width: 1.5; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a,
.footer-col ul li button {
  font-size: 0.875rem; color: var(--cream-muted);
  transition: color 200ms; background: none; border: none;
  cursor: pointer; text-align: left; font-family: 'DM Sans', sans-serif;
  padding: 0;
}
.footer-col ul li a:hover,
.footer-col ul li button:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1400px; margin: 0 auto; padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; padding: 1.25rem 3rem; } }
.footer-bottom p { font-size: 0.75rem; color: var(--cream-faint); letter-spacing: 0.05em; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links button {
  font-size: 0.75rem; color: var(--cream-faint);
  transition: color 200ms; background: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.footer-bottom-links button:hover { color: var(--gold); }

/* ============================================================
   PAGE HEADER (shared across inner pages)
   ============================================================ */
.page-header {
  position: relative;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
}
.page-header-bg {
  position: absolute; inset: 0;
}
.page-header-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.15;
}
.page-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,16,0.6), var(--obsidian));
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); margin-bottom: 1rem;
}
.page-header h1 em { font-style: italic; font-weight: 600; }
.page-header p { font-size: 0.875rem; color: var(--cream-muted); max-width: 28rem; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   HOME PAGE
   ============================================================ */
/* Hero */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,13,16,0.92) 0%, rgba(13,13,16,0.6) 50%, transparent 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(13,13,16,0.8) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem 5rem;
  width: 100%;
}
@media (min-width: 1024px) { .hero-content { padding: 0 3rem 5rem; } }
.hero-inner { max-width: 36rem; }
.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300; line-height: 0.95;
  color: var(--cream); margin-bottom: 0.25rem;
}
.hero h1.italic { font-style: italic; font-weight: 700; }
.hero-sub {
  font-size: 0.9375rem; color: var(--cream-dim);
  font-weight: 300; line-height: 1.7;
  max-width: 28rem; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-num {
  position: absolute; right: 2rem; bottom: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; font-weight: 700;
  color: rgba(201,168,76,0.15); user-select: none;
  display: none;
}
@media (min-width: 1024px) { .hero-num { display: block; } }

/* Pillars */
.pillars {
  background: var(--obsidian-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.pillars-grid {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    divide-x: 1px solid var(--border);
    padding: 0 3rem;
  }
}
.pillar {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .pillar { border-right: 1px solid var(--border); }
  .pillar:last-child { border-right: none; }
}
.pillar-icon { color: var(--gold); margin-bottom: 0.75rem; }
.pillar-icon svg { width: 22px; height: 22px; stroke-width: 1; }
.pillar h3 { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.75rem; color: var(--cream-muted); line-height: 1.6; }

/* Collections section */
.collections-section { padding: 6rem 0 8rem; }
.collections-header {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem 3.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 1024px) {
  .collections-header { flex-direction: row; align-items: flex-end; justify-content: space-between; padding: 0 3rem 3.5rem; }
}
.collections-header h2 { font-size: clamp(2.5rem, 5vw, 3.75rem); line-height: 1.1; }
.collections-header h2 em { font-style: italic; font-weight: 600; }

.collections-grid {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .collections-grid { grid-template-columns: repeat(4, 1fr); padding: 0 3rem; gap: 1rem; } }

.product-card {
  position: relative; overflow: hidden;
  background: var(--obsidian-3);
  cursor: pointer;
}
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(0.23,1,0.32,1);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,16,0.9) 0%, transparent 60%);
  opacity: 0; transition: opacity 300ms ease-out;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-cta {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem;
  transform: translateY(8px); opacity: 0;
  transition: all 300ms ease-out;
  font-family: 'DM Sans', sans-serif; font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
}
.product-card:hover .product-card-cta { transform: translateY(0); opacity: 1; }
.product-card-info {
  padding: 1rem; background: var(--obsidian-3);
}
.product-card-info h3 {
  font-size: 1.125rem; font-weight: 400; color: var(--cream); margin-bottom: 0.125rem;
}
.product-card-info p { font-size: 0.75rem; letter-spacing: 0.05em; color: var(--cream-muted); }

/* Craft feature */
.craft-feature { position: relative; overflow: hidden; }
.craft-grid {
  display: grid; grid-template-columns: 1fr;
  min-height: 600px;
}
@media (min-width: 1024px) { .craft-grid { grid-template-columns: 1fr 1fr; } }
.craft-img {
  position: relative; overflow: hidden; min-height: 400px;
}
.craft-img img { width: 100%; height: 100%; object-fit: cover; }
.craft-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, rgba(13,13,16,0.4));
}
.craft-text {
  background: var(--obsidian-2);
  display: flex; align-items: center;
  padding: 4rem 2.5rem;
}
@media (min-width: 1024px) { .craft-text { padding: 5rem 4rem; } }
.craft-text h2 { font-size: clamp(2.5rem, 4vw, 3.75rem); line-height: 1.1; }
.craft-text h2 em { font-style: italic; font-weight: 600; }
.craft-text p { font-size: 0.875rem; color: var(--cream-muted); line-height: 1.7; max-width: 28rem; }

/* Stats */
.stats-section {
  background: var(--obsidian-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.stats-grid {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4,1fr); gap: 0; padding: 0 3rem; } }
.stat {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .stat { border-right: 1px solid var(--border); }
  .stat:last-child { border-right: none; }
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; margin-bottom: 0.5rem;
}
.stat p { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream-muted); }

/* Featured piece */
.featured-section { padding: 6rem 0 8rem; }
.featured-grid {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .featured-grid { grid-template-columns: 1fr 1fr; gap: 5rem; padding: 0 3rem; } }
.featured-text h2 { font-size: clamp(2.5rem, 5vw, 3.75rem); line-height: 1.1; }
.featured-text h2 em { font-style: italic; font-weight: 600; }
.featured-text p { font-size: 0.875rem; color: var(--cream-muted); line-height: 1.7; max-width: 28rem; }
.featured-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--gold); margin-bottom: 1.5rem;
}
.featured-bullets { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.featured-bullets li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8125rem; color: var(--cream-dim);
}
.featured-bullets li::before {
  content: ''; flex-shrink: 0; width: 0.75rem; height: 1px;
  background: var(--gold);
}
.featured-img-wrap { position: relative; }
.featured-img-wrap img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.featured-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--gold); color: var(--obsidian);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.375rem 0.875rem;
}

/* ============================================================
   COLLECTIONS PAGE
   ============================================================ */
.filter-bar {
  display: flex; align-items: center; gap: 0; overflow-x: auto;
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  max-width: 1400px; margin: 0 auto;
}
@media (min-width: 1024px) { .filter-bar { padding: 0 3rem; } }
.filter-btn {
  flex-shrink: 0; padding: 1rem 1.5rem;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-muted);
  border-bottom: 2px solid transparent;
  transition: all 200ms; cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.products-grid {
  max-width: 1400px; margin: 0 auto; padding: 3rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 3rem; } }

.product-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--gold); color: var(--obsidian);
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.25rem 0.625rem;
  z-index: 1;
}
.product-gem-badge {
  display: inline-block; margin-top: 0.25rem;
  font-size: 0.6rem; color: var(--gold); letter-spacing: 0.1em;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem; color: var(--gold); margin-top: 0.25rem;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; padding: 2rem 1.5rem;
  max-width: 1400px; margin: 0 auto;
}
.gallery-filter-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--border-gold); color: var(--cream-muted);
  background: transparent; cursor: pointer; transition: all 200ms;
  font-family: 'DM Sans', sans-serif;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--gold); border-color: var(--gold); color: var(--obsidian);
}

.gallery-pieces { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem 6rem; }
@media (min-width: 1024px) { .gallery-pieces { padding: 0 3rem 6rem; } }

.gallery-piece {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .gallery-piece { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .gallery-piece.reverse { direction: rtl; }
  .gallery-piece.reverse > * { direction: ltr; }
}
.gallery-piece:last-child { border-bottom: none; }

.gallery-img-wrap {
  position: relative; overflow: hidden; cursor: zoom-in;
}
.gallery-img-wrap img {
  width: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(0.23,1,0.32,1);
}
.gallery-img-wrap:hover img { transform: scale(1.03); }

.gallery-piece-text {}
.gallery-piece-text .gem-badge {
  display: inline-block; margin-bottom: 1rem;
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--border-gold); padding: 0.25rem 0.75rem;
}
.gallery-piece-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 0.5rem;
}
.gallery-piece-text .subheadline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic; color: var(--gold);
  margin-bottom: 0.75rem;
}
.gallery-piece-text .tagline {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-muted); margin-bottom: 1.25rem;
}
.gallery-piece-text .body-text {
  font-size: 0.9375rem; color: var(--cream-dim); line-height: 1.75;
  margin-bottom: 1.75rem;
}
.gallery-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem;
}
.gallery-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.gallery-feature-icon {
  width: 2rem; height: 2rem; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.gallery-feature-icon svg { width: 14px; height: 14px; stroke-width: 1.5; }
.gallery-feature-text h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 0.125rem;
}
.gallery-feature-text p { font-size: 0.75rem; color: var(--cream-muted); }
.gallery-piece-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--cream); font-size: 2rem; cursor: pointer;
  background: none; border: none; line-height: 1;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.about-hero-bg { position: absolute; inset: 0; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,13,16,0.9) 0%, rgba(13,13,16,0.5) 60%, transparent 100%);
}
.about-hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(13,13,16,0.8) 0%, transparent 50%);
}
.about-hero-content { position: relative; z-index: 2; padding: 0 1.5rem 4rem; max-width: 1400px; margin: 0 auto; width: 100%; }
@media (min-width: 1024px) { .about-hero-content { padding: 0 3rem 4rem; } }
.about-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; line-height: 1.1; max-width: 36rem; }
.about-hero h1 em { font-style: italic; font-weight: 600; }

.founders-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  max-width: 1400px; margin: 0 auto; padding: 4rem 1.5rem;
}
@media (min-width: 768px) { .founders-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .founders-grid { padding: 4rem 3rem; } }
.founder-card {
  border: 1px solid var(--border);
  padding: 2rem; background: var(--obsidian-2);
}
.founder-card h3 {
  font-size: 1.5rem; font-weight: 400; margin-bottom: 0.25rem;
}
.founder-card .role { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.founder-card p { font-size: 0.9375rem; color: var(--cream-dim); line-height: 1.75; }

.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem 4rem;
}
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4,1fr); padding: 0 3rem 4rem; } }
.value-card { padding: 2rem 0; border-top: 1px solid var(--border-gold); }
.value-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: rgba(201,168,76,0.2);
  line-height: 1; margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.25rem; font-weight: 400; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--cream-muted); line-height: 1.7; }

.timeline { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem 4rem; }
@media (min-width: 1024px) { .timeline { padding: 0 3rem 4rem; } }
.timeline-item { display: flex; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300; color: var(--gold);
  flex-shrink: 0; min-width: 6rem;
}
.timeline-event { font-size: 0.9375rem; color: var(--cream-dim); line-height: 1.7; padding-top: 0.25rem; }

/* ============================================================
   CRAFTSMANSHIP PAGE
   ============================================================ */
.craft-steps { max-width: 1400px; margin: 0 auto; padding: 4rem 1.5rem; }
@media (min-width: 1024px) { .craft-steps { padding: 4rem 3rem; } }
.craft-step {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  padding: 4rem 0; border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .craft-step { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .craft-step.reverse { direction: rtl; }
  .craft-step.reverse > * { direction: ltr; }
}
.craft-step:last-child { border-bottom: none; }
.craft-step-img { overflow: hidden; }
.craft-step-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.craft-step-text {}
.craft-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300;
  color: rgba(201,168,76,0.15); line-height: 1;
  margin-bottom: 0.5rem;
}
.craft-step-text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 300; margin-bottom: 1rem; }
.craft-step-text p { font-size: 0.9375rem; color: var(--cream-dim); line-height: 1.75; }

.craft-quote {
  max-width: 1400px; margin: 0 auto; padding: 4rem 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) { .craft-quote { padding: 4rem 3rem; } }
.craft-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic; font-weight: 300;
  color: var(--cream-dim); line-height: 1.6;
  max-width: 48rem; margin: 0 auto;
}

/* ============================================================
   BESPOKE PAGE
   ============================================================ */
.bespoke-intro {
  max-width: 1400px; margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) { .bespoke-intro { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 4rem 3rem; } }
.bespoke-intro h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.15; margin-bottom: 1rem; }
.bespoke-intro h2 em { font-style: italic; font-weight: 600; }
.bespoke-intro p { font-size: 0.9375rem; color: var(--cream-dim); line-height: 1.75; margin-bottom: 1rem; }
.bespoke-services-list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.bespoke-services-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: var(--cream-dim);
}
.bespoke-services-list li::before { content: ''; flex-shrink: 0; width: 0.75rem; height: 1px; background: var(--gold); }
.bespoke-intro-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.bespoke-process { background: var(--obsidian-2); padding: 5rem 0; }
.bespoke-process-inner { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .bespoke-process-inner { padding: 0 3rem; } }
.bespoke-process-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem;
}
@media (min-width: 768px) { .bespoke-process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bespoke-process-grid { grid-template-columns: repeat(3,1fr); } }
.bespoke-step {
  padding: 2rem; border: 1px solid var(--border);
  background: var(--obsidian);
}
.bespoke-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 1rem;
}
.bespoke-step h3 { font-size: 1.25rem; font-weight: 400; margin-bottom: 0.75rem; }
.bespoke-step p { font-size: 0.875rem; color: var(--cream-muted); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  max-width: 1400px; margin: 0 auto; padding: 5rem 1.5rem;
  display: grid; grid-template-columns: 1fr; gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; gap: 5rem; padding: 5rem 3rem; } }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 2rem; height: 2rem; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-top: 0.125rem;
}
.contact-info-icon svg { width: 14px; height: 14px; stroke-width: 1; }
.contact-info-text .label { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.contact-info-text a, .contact-info-text p { font-size: 0.875rem; color: var(--cream-dim); line-height: 1.7; }
.contact-info-text a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form-row { grid-template-columns: 1fr 1fr; } }
.contact-form input, .contact-form textarea {
  width: 100%; background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.875rem 1rem;
  font-size: 0.875rem; color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 200ms;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--cream-faint); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: none; }

/* ============================================================
   POLICIES PAGE
   ============================================================ */
.policies-tabs {
  border-bottom: 1px solid var(--border);
  position: sticky; top: 5rem; z-index: 30;
  background: rgba(13,13,16,0.97);
  backdrop-filter: blur(12px);
}
.policies-tabs-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; overflow-x: auto;
}
@media (min-width: 1024px) { .policies-tabs-inner { padding: 0 3rem; } }
.policy-tab {
  flex-shrink: 0; padding: 1rem 1.5rem;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-muted);
  border-bottom: 2px solid transparent;
  transition: all 200ms; cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: 'DM Sans', sans-serif;
}
.policy-tab:hover, .policy-tab.active {
  color: var(--gold); border-bottom-color: var(--gold);
}
.policies-content {
  max-width: 1400px; margin: 0 auto; padding: 4rem 1.5rem;
}
@media (min-width: 1024px) { .policies-content { padding: 5rem 3rem; } }
.policy-panel { display: none; max-width: 48rem; }
.policy-panel.active { display: block; }
.policy-intro { font-size: 0.9375rem; color: var(--cream-dim); line-height: 1.75; margin-bottom: 2.5rem; }
.policy-section { border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 2rem; margin-bottom: 2rem; }
.policy-section:last-child { border-bottom: none; }
.policy-section h3 { font-size: 1.125rem; font-weight: 500; color: var(--cream); margin-bottom: 1rem; }
.policy-section p { font-size: 0.875rem; color: var(--cream-muted); line-height: 1.75; margin-bottom: 0.75rem; }
.policy-section ul { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.policy-section ul li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--cream-muted); line-height: 1.6;
}
.policy-section ul li::before {
  content: ''; flex-shrink: 0; margin-top: 0.65rem;
  width: 0.75rem; height: 1px; background: var(--gold);
}
.policy-promise {
  margin-top: 2rem; padding: 1.5rem;
  border: 1px solid var(--border-gold);
  background: rgba(201,168,76,0.05);
}
.policy-promise h3 { font-size: 1.125rem; font-weight: 500; margin-bottom: 0.5rem; }
.policy-promise p { font-size: 0.875rem; color: var(--cream-muted); line-height: 1.75; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page { max-width: 1400px; margin: 0 auto; padding: 3rem 1.5rem 6rem; }
@media (min-width: 1024px) { .product-page { padding: 3rem 3rem 6rem; } }
.product-layout {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) { .product-layout { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.product-gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.product-gallery-main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 0.5rem; }
.product-thumb {
  width: 5rem; height: 5rem; overflow: hidden; cursor: pointer;
  border: 1px solid transparent; transition: border-color 200ms;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active { border-color: var(--gold); }
.product-info h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 300; margin-bottom: 0.5rem; }
.product-price-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 300; color: var(--gold);
  margin-bottom: 1.5rem;
}
.product-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.product-features li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8125rem; color: var(--cream-dim);
}
.product-features li::before { content: ''; flex-shrink: 0; width: 0.75rem; height: 1px; background: var(--gold); }
.size-label { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.size-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.size-btn {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--border);
  font-size: 0.8125rem; color: var(--cream-dim);
  background: transparent; cursor: pointer; transition: all 200ms;
  font-family: 'DM Sans', sans-serif;
}
.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn.active { border-color: var(--gold); background: var(--gold); color: var(--obsidian); }
.product-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.product-ctas .btn-gold, .product-ctas .btn-gold-filled { width: 100%; }
.product-tabs-bar {
  display: flex; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem;
}
.product-tab-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream-muted);
  border-bottom: 2px solid transparent;
  transition: all 200ms; cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: 'DM Sans', sans-serif;
}
.product-tab-btn:hover, .product-tab-btn.active {
  color: var(--gold); border-bottom-color: var(--gold);
}
.product-tab-panel { display: none; }
.product-tab-panel.active { display: block; }
.product-tab-panel p { font-size: 0.875rem; color: var(--cream-muted); line-height: 1.75; margin-bottom: 0.75rem; }
.product-tab-panel ul { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }
.product-tab-panel ul li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--cream-muted);
}
.product-tab-panel ul li::before { content: '·'; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--obsidian-2);
  border-top: 1px solid var(--border);
  padding: 5rem 0; text-align: center;
}
.cta-band h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 300; margin-bottom: 1rem; }
.cta-band h2 em { font-style: italic; font-weight: 600; }
.cta-band p { font-size: 0.9375rem; color: var(--cream-muted); max-width: 30rem; margin: 0 auto 2rem; line-height: 1.7; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-container {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.toast {
  padding: 0.875rem 1.25rem;
  background: var(--obsidian-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  color: var(--cream);
  font-size: 0.875rem; min-width: 16rem;
  animation: fadeUp 0.3s ease both;
}
.toast.success { border-left-color: #4caf50; }
.toast.error   { border-left-color: #f44336; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 1023px) {
  .lg-hidden { display: none !important; }
}
@media (min-width: 1024px) {
  .mobile-only { display: none !important; }
}
