/*
Theme Name: Modern Office Noir
Theme URI: https://modernoffice.no
Author: Modern Office
Description: Exclusive noir editorial theme for Modern Office — premium pre-owned Scandinavian office furniture.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: modernoffice
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --noir-black:      #0a0a0a;
  --noir-deep:       #111111;
  --noir-card:       #161616;
  --noir-border:     #2a2a2a;
  --noir-subtle:     #1e1e1e;
  --gold:            #c9a84c;
  --gold-light:      #e8c97a;
  --gold-dim:        #8a6f2e;
  --ivory:           #f0ede6;
  --ivory-dim:       #b8b4aa;
  --white:           #ffffff;
  --text-primary:    #e8e4dc;
  --text-secondary:  #8c8880;
  --text-muted:      #4a4844;

  --font-display:    'Cormorant Garamond', 'Georgia', serif;
  --font-sans:       'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:       'DM Mono', 'Courier New', monospace;

  --radius-sm:       2px;
  --radius-md:       4px;

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:       1400px;
  --gutter:          clamp(1.5rem, 4vw, 4rem);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--noir-black);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(4rem, 10vw, 10rem) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

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

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   GOLD DIVIDER
   ============================================================ */
.gold-line {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform var(--transition-base);
}

.btn:hover::before { transform: translateX(0); }

.btn--gold {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}

.btn--gold::before { background: var(--gold); }
.btn--gold:hover { color: var(--noir-black); }

.btn--ghost {
  color: var(--text-secondary);
  border-color: var(--noir-border);
  background: transparent;
}

.btn--ghost::before { background: var(--noir-border); }
.btn--ghost:hover { color: var(--ivory); }

.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; transition: transform var(--transition-base); }
.btn:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-base);
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  padding: 1.25rem var(--gutter);
  border-bottom: 1px solid var(--noir-border);
}

.site-header.scrolled::after { display: none; }

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--ivory);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.logo span {
  color: var(--gold);
}

.main-nav {
  position: relative;
  z-index: 1;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-base);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ivory);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 0.6rem 1.2rem;
  transition: all var(--transition-base) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--noir-black) !important;
  border-color: var(--gold) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: all var(--transition-base);
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
  }

  .main-nav.open ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .main-nav.open a {
    font-size: 0.9rem;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 40%, #0f0f0f 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 75% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(201,168,76,0.03) 0%, transparent 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.0;
  margin-bottom: 2rem;
  max-width: 14ch;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 42ch;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   CATEGORY STRIP (hero bottom)
   ============================================================ */
.category-strip {
  background: var(--noir-deep);
  border-top: 1px solid var(--noir-border);
  border-bottom: 1px solid var(--noir-border);
  padding: 0;
  overflow: hidden;
}

.category-strip-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-strip-inner::-webkit-scrollbar { display: none; }

.category-item {
  flex: 1;
  min-width: 140px;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--noir-border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background var(--transition-base);
  cursor: pointer;
}

.category-item:last-child { border-right: none; }

.category-item:hover {
  background: var(--noir-subtle);
}

.category-item:hover .category-item-label {
  color: var(--gold);
}

.category-item-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.category-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ivory);
}

/* ============================================================
   FEATURED PRODUCTS GRID
   ============================================================ */
.products-section {
  background: var(--noir-black);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header-left {}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  margin-top: 0.5rem;
}

/* Product Card */
.product-card {
  background: var(--noir-card);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.product-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--noir-subtle);
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: grayscale(20%);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-quick {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--noir-border);
}

.product-card-brand {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.35rem;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-card-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.product-card-price strong {
  color: var(--gold);
  font-weight: 400;
}

/* ============================================================
   ABOUT / BRAND STATEMENT SECTION
   ============================================================ */
.brand-section {
  background: var(--noir-deep);
  border-top: 1px solid var(--noir-border);
  border-bottom: 1px solid var(--noir-border);
}

.brand-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 60vh;
}

.brand-text {
  padding: clamp(3rem, 8vw, 8rem) var(--gutter) clamp(3rem, 8vw, 8rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-visual {
  border-left: 1px solid var(--noir-border);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.brand-visual-inner {
  position: absolute;
  inset: 0;
  background: var(--noir-subtle);
}

.brand-visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.brand-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.3;
  margin-bottom: 2rem;
}

.brand-body {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

.brand-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--noir-border);
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .brand-layout { grid-template-columns: 1fr; }
  .brand-visual { min-height: 300px; border-left: none; border-top: 1px solid var(--noir-border); }
  .brand-text { padding: clamp(3rem, 8vw, 6rem) 0; }
  .brand-stats { gap: 2rem; }
}

/* ============================================================
   MARQUEE / BRAND TICKER
   ============================================================ */
.marquee-section {
  background: var(--noir-subtle);
  border-top: 1px solid var(--noir-border);
  border-bottom: 1px solid var(--noir-border);
  padding: 1.25rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.marquee-item::after {
  content: '◆';
  font-size: 0.4rem;
  color: var(--gold-dim);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   CATEGORY SHOWCASE
   ============================================================ */
.categories-section {
  background: var(--noir-black);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--noir-card);
}

.cat-card--featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.cat-card-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.6);
  transition: all var(--transition-slow);
}

.cat-card--featured .cat-card-image {
  min-height: 600px;
}

.cat-card:hover .cat-card-image {
  filter: grayscale(0%) brightness(0.5);
  transform: scale(1.03);
}

.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
}

.cat-card-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.cat-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--ivory);
}

.cat-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: all var(--transition-base);
}

.cat-card:hover .cat-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .category-grid { grid-template-columns: 1fr; }
  .cat-card--featured { grid-column: 1; grid-row: auto; }
  .cat-card--featured .cat-card-image { min-height: 400px; }
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands-section {
  background: var(--noir-deep);
  border-top: 1px solid var(--noir-border);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--noir-border);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.brand-pill {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--noir-border);
  transition: background var(--transition-base);
}

.brand-pill:nth-child(4n) { border-right: none; }

.brand-pill:hover { background: var(--noir-subtle); }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.brand-pill:hover .brand-name { color: var(--gold); }

@media (max-width: 700px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-pill:nth-child(4n) { border-right: 1px solid var(--noir-border); }
  .brand-pill:nth-child(2n) { border-right: none; }
}

/* ============================================================
   EDITORIAL / CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--noir-subtle);
  border-top: 1px solid var(--noir-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

.cta-body {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT / ENQUIRY SECTION
   ============================================================ */
.contact-section {
  background: var(--noir-black);
  border-top: 1px solid var(--noir-border);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-form-group {
  margin-bottom: 1.5rem;
}

.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-input,
.contact-textarea,
.contact-select {
  width: 100%;
  background: var(--noir-card);
  border: 1px solid var(--noir-border);
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition-base);
  outline: none;
  appearance: none;
  border-radius: 0;
}

.contact-input:focus,
.contact-textarea:focus,
.contact-select:focus {
  border-color: var(--gold-dim);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--text-muted);
}

.contact-textarea {
  min-height: 160px;
  resize: vertical;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--noir-deep);
  border-top: 1px solid var(--noir-border);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ivory);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 30ch;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--noir-border);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.footer-legal a:hover { color: var(--ivory); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: clamp(8rem, 15vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--noir-deep);
  border-bottom: 1px solid var(--noir-border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}

/* ============================================================
   PRODUCT ARCHIVE PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  background: var(--noir-border);
}

.filter-btn {
  background: var(--noir-card);
  border: none;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--noir-subtle);
  color: var(--gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up {
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   WORDPRESS SPECIFICS
   ============================================================ */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin: 0 auto; }
.wp-block-image { margin-bottom: 1.5rem; }
