/* ==========================================
   DALI ENTERPRISE - daliclothing.com
   High-End Static Website Stylesheet
   Color Palette: Industrial Gray, Warm Gold
   ========================================== */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #141416;
  color: #c9c7c3;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Typography ---- */
.font-display {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.font-ui {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}

/* ---- Color Tokens ---- */
:root {
  --void: #141416;
  --void-deep: #0e0e10;
  --elevated: #1e1e22;
  --border: #2e2e34;
  --body: #7a7880;
  --muted: #8e8c94;
  --white: #c9c7c3;
  --light: #e8e6e3;
  --gold: #c9a96e;
  --gold-dim: #a68a52;
  --gold-bright: #d4b87a;
  --overlay: rgba(14, 14, 16, 0.88);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--void);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 80px);
  mix-blend-mode: difference;
  transition: background 0.4s ease, padding 0.3s ease;
}

.nav-main.scrolled {
  background: rgba(20, 20, 22, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mix-blend-mode: normal;
  padding: 14px clamp(20px, 4vw, 80px);
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.7;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '\25BC';
  font-size: 7px;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.5;
  color: var(--muted);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--elevated);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--body);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.dropdown-label {
  display: block;
  padding: 4px 20px 8px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 20px;
  cursor: pointer;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--void);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,22,0.4) 0%,
    rgba(14,14,16,0.15) 40%,
    rgba(14,14,16,0.55) 80%,
    rgba(14,14,16,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--gold);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  margin-bottom: 20px;
  word-break: keep-all;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent);
  margin: 0 auto 8px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 48px; }
  50% { opacity: 0.7; height: 64px; }
}

/* ==========================================
   SECTION UTILITIES
   ========================================== */
.section {
  position: relative;
  padding: clamp(80px, 15vh, 200px) clamp(20px, 4vw, 80px);
}

.section-dark {
  background: var(--void);
}

.section-elevated {
  background: var(--elevated);
}

.section-header {
  margin-bottom: clamp(40px, 6vh, 80px);
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--gold);
}

.section-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
  max-width: 640px;
}

/* ==========================================
   MANIFESTO SECTION
   ========================================== */
.manifesto {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 15vh, 200px) clamp(20px, 4vw, 80px);
}

.manifesto-inner {
  max-width: 800px;
}

.manifesto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--gold);
  margin-bottom: 32px;
}

.manifesto p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body);
}

/* ==========================================
   STATS BAR
   ========================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  background: var(--void);
  padding: clamp(28px, 4vh, 48px) clamp(16px, 2vw, 32px);
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================
   DUAL-BASE GRID
   ========================================== */
.dual-base {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.dual-col {
  background: var(--void);
  padding: clamp(40px, 6vw, 80px);
  min-height: 500px;
}

.dual-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 24px;
}

.dual-col p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 16px;
}

.dual-col .feature-list {
  list-style: none;
  margin-top: 24px;
}

.dual-col .feature-list li {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(46,46,52,0.5);
}

.dual-col .feature-list li::before {
  content: '\2014';
  margin-right: 10px;
  color: var(--gold-dim);
}

.dual-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-top: 32px;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.dual-image:hover {
  opacity: 1;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 80px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.product-card {
  background: var(--void);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  opacity: 0.6;
}

.product-card:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,14,16,0.92) 0%,
    rgba(14,14,16,0.25) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-card-desc {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ==========================================  
   PAGE HEADER (for inner pages)
   ========================================== */
.page-header {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--void);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,22,0.5) 0%,
    rgba(14,14,16,0.35) 50%,
    rgba(14,14,16,0.95) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.page-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 0.95;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.page-header-subtitle {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================
   CONTENT SECTIONS (inner pages)
   ========================================== */
.content-section {
  padding: clamp(60px, 10vh, 120px) clamp(20px, 4vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.1;
}

.content-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--light);
  margin: 40px 0 16px;
}

.content-section p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 16px;
}

.content-section ul {
  list-style: none;
  margin: 16px 0;
}

.content-section ul li {
  font-size: 14px;
  color: var(--body);
  padding: 6px 0 6px 20px;
  position: relative;
}

.content-section ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

.content-section strong {
  color: var(--light);
  font-weight: 500;
}

/* ==========================================
   IMAGE GRID (inner pages)
   ========================================== */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 48px 0;
}

.image-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity 0.4s ease;
}

.image-grid img:hover {
  opacity: 1;
}

/* ==========================================
   SPECIFICATIONS TABLE
   ========================================== */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 13px;
}

.specs-table th {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-dim);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: rgba(201, 169, 110, 0.03);
}

.specs-table td {
  padding: 14px 16px;
  color: var(--body);
  border-bottom: 1px solid rgba(46,46,52,0.4);
}

.specs-table tr:hover td {
  color: var(--light);
  background: rgba(201, 169, 110, 0.03);
}

/* ==========================================
   PROCESS STEPS
   ========================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 48px 0;
}

.process-step {
  background: var(--void);
  padding: 32px 20px;
  text-align: center;
}

.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step-title {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================
   TIMELINE
   ========================================== */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--void);
  border: 1px solid var(--gold-dim);
}

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

/* ==========================================
   QUALITY & CERTIFICATIONS
   ========================================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  margin: 48px 0;
}

.cert-item {
  background: var(--void);
  padding: 32px 24px;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.4s ease, background 0.3s ease;
}

.cert-item:hover {
  opacity: 1;
  background: var(--elevated);
}

.cert-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.cert-name {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 4px;
}

.cert-desc {
  font-size: 11px;
  color: var(--muted);
}

/* ==========================================
   PARTNERSHIP / FEATURE CARDS
   ========================================== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 48px 0;
}

.feature-card {
  background: var(--void);
  padding: clamp(32px, 4vw, 48px);
  transition: background 0.3s ease;
}

.feature-card:hover {
  background: var(--elevated);
}

.feature-card-icon {
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.contact-col {
  background: var(--void);
  padding: clamp(40px, 5vw, 64px);
}

.contact-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 24px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--light);
  outline: none;
  transition: border-color 0.3s ease;
  margin-bottom: 20px;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--border);
  font-size: 12px;
  letter-spacing: 0.04em;
}

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

.btn-submit {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 60px clamp(20px, 4vw, 80px) 40px;
  border-top: 1px solid rgba(46,46,52,0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
}

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 12px;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(46,46,52,0.3);
  font-size: 11px;
  color: var(--border);
}

.footer-seo {
  font-size: 10px;
  color: #222228;
  line-height: 1.8;
  padding-top: 16px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .dual-base {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .feature-cards {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-header {
    height: 45vh;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* ==========================================
   TWO COLUMN TEXT LAYOUT
   ========================================== */
.text-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .text-two-col {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--border);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  margin: 0 8px;
  color: var(--gold-dim);
}
