/* ===========================
   RIHLA — Brand Stylesheet
   Aesthetic: Desert Luxury Editorial
   =========================== */

:root {
  --bg: #F5EDE0;
  --bg-warm: #EDE4D8;
  --fg: #0F1629;
  --fg-muted: #5A5A6E;
  --gold: #C9A96E;
  --gold-light: #D4B87A;
  --blush: #E8D5C4;
  --midnight: #1A2744;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-width: 1200px;
  --section-padding: 96px 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- HERO ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 85vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 96px;
  align-items: center;
}

.hero-left {
  padding-right: 60px;
}

.hero-overline {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--midnight);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  max-width: 320px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.divider-mark {
  color: var(--gold);
  font-size: 0.6rem;
}

.hero-detail {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-style: italic;
  font-family: var(--font-display);
}

/* Hero Art — geometric decorative element */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
}

.hero-art {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.art-circle--outer {
  width: 380px;
  height: 380px;
  opacity: 0.2;
}

.art-circle--mid {
  width: 260px;
  height: 260px;
  opacity: 0.35;
  border-color: var(--gold);
}

.art-circle--inner {
  width: 140px;
  height: 140px;
  background: var(--gold);
  opacity: 0.12;
}

.art-star {
  position: absolute;
  font-size: 1.4rem;
  color: var(--gold);
  z-index: 1;
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--midnight);
  padding: var(--section-padding);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--blush);
  line-height: 1.8;
  margin-bottom: 24px;
}

.manifesto-text:last-child {
  font-style: italic;
  color: var(--gold-light);
}

/* ---- JOURNEY / COLLECTIONS ---- */
.journey {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.journey-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.journey-item {
  padding: 48px 32px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  position: relative;
  transition: background 0.3s ease;
}

.journey-item:hover {
  background: var(--bg-warm);
}

.journey-item--active {
  background: var(--midnight);
  border-color: var(--gold);
}

.journey-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 12px;
  line-height: 1;
}

.journey-item--active .journey-num {
  opacity: 0.8;
}

.journey-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}

.journey-item--active .journey-name {
  color: var(--white);
}

.journey-region {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.journey-item--active .journey-region {
  color: var(--blush);
}

.journey-status {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ---- VALUES ---- */
.values {
  background: var(--bg-warm);
  padding: var(--section-padding);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-item {
  padding: 0;
}

.value-icon {
  font-size: 0.6rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.3em;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- CRAFTSMANSHIP ---- */
.craft {
  background: var(--fg);
  padding: var(--section-padding);
}

.craft-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.craft-inner .section-label {
  color: var(--gold);
}

.craft-inner .section-title {
  color: var(--white);
  margin-bottom: 24px;
}

.craft-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 48px;
}

.craft-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(201,169,110,0.2);
  padding-top: 40px;
}

.craft-detail {
  text-align: left;
}

.craft-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.craft-val {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--blush);
  font-style: italic;
}

/* ---- CLOSING ---- */
.closing {
  padding: 96px 40px;
  text-align: center;
  background: var(--bg);
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.4;
}

.closing-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-note {
  font-size: 0.68rem;
  color: rgba(90,90,110,0.5);
}

/* ---- BRAND IDENTITY PAGE ---- */
.brand-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 96px;
}

.brand-header {
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  margin-bottom: 72px;
}

.wordmark-display {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  background: var(--midnight);
  margin-bottom: 72px;
}

.wordmark-display img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.brand-identity-intro {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 72px;
}

/* Brand Grid */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.brand-grid-full {
  grid-column: 1 / -1;
}

/* Color Palette */
.color-palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.color-swatch {
  text-align: center;
}

.color-chip {
  width: 80px;
  height: 80px;
  border-radius: 2px;
  margin: 0 auto 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

.color-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}

.color-hex {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  font-family: 'DM Mono', 'Courier New', monospace;
}

.color-usage {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* Typography */
.typography-stack {
  display: grid;
  gap: 24px;
}

.type-sample {
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.type-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.type-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.type-css {
  font-size: 0.65rem;
  color: var(--fg-muted);
  font-family: 'Courier New', monospace;
}

.type-display-sample {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 4px;
}

.type-body-sample {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Brand Voice */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.voice-col {
  padding: 0;
}

.voice-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.voice-trait {
  margin-bottom: 24px;
}

.voice-trait-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
}

.voice-trait-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.voice-example {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--fg-muted);
  margin-top: 6px;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}

/* ---- MOOD BOARD ---- */
.mood-board {
  margin: 64px 0;
}

.mood-board img {
  width: 100%;
  height: auto;
  display: block;
}

.mood-caption {
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* ---- COLLECTION PAGE ---- */
.collection-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 96px;
}

.collection-header {
  padding: 80px 0 64px;
  text-align: center;
}

.collection-overline {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.collection-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.05;
}

.collection-title em {
  font-style: italic;
  color: var(--midnight);
}

.collection-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.collection-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,169,110,0.2);
}

.collection-meta-item {
  text-align: center;
}

.collection-meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.collection-meta-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
}

/* Collection Pieces Grid */
.pieces-section {
  margin-top: 80px;
}

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

.piece-card {
  display: flex;
  flex-direction: column;
}

.piece-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  background: var(--bg-warm);
}

.piece-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.piece-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}

.piece-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.piece-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.piece-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--fg-muted);
}

/* Design Brief Section */
.brief-section {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid rgba(201,169,110,0.2);
}

.brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 40px;
}

.brief-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.brief-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.brief-item {
  padding: 16px 20px;
  background: var(--bg-warm);
  border-left: 2px solid var(--gold);
}

.brief-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.brief-item-val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--fg);
}

/* Style Guide Strip */
.style-guide-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid rgba(201,169,110,0.2);
}

.guide-strip-item {
  padding: 32px 24px;
  background: var(--bg-warm);
}

.guide-strip-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.guide-strip-val {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--fg);
}

/* ================================
   E-COMMERCE STYLES
   ================================ */

/* Nav — Links */
.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  padding: 4px 0;
}
.nav-link:hover { color: var(--fg); }

/* Nav — Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-btn {
  background: none;
  border: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 400;
  padding: 4px 0;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-btn:hover { color: var(--fg); }
.nav-dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid rgba(201,169,110,0.2);
  min-width: 200px;
  z-index: 100;
  padding: 8px 0;
}
.nav-dropdown-open { display: block; }
.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-dropdown-item:hover { background: var(--bg-warm); }
.nav-dropdown-item-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}
.nav-dropdown-item-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 2px;
  text-transform: uppercase;
}

/* Nav — Divider */
.nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(201,169,110,0.3);
  margin: 0 8px;
}

/* Nav — Cart */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px;
}
.nav-cart:hover { color: var(--fg); }
.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================
   SHOP PAGE
   ================================ */

.shop-hero {
  background: var(--midnight);
  padding: 80px 40px;
  text-align: center;
}
.shop-hero-inner { max-width: 600px; margin: 0 auto; }
.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.05;
}
.shop-hero-title em { font-style: italic; color: var(--blush); }
.shop-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Filter Bar */
.shop-filter {
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 0 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.shop-filter-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 20px 0;
}
.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.filter-btn:hover { color: var(--fg); }
.filter-btn--active {
  color: var(--fg);
  border-bottom-color: var(--gold);
}

/* Products Grid */
.shop-grid-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 40px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  margin-bottom: 20px;
}
.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image { transform: scale(1.04); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,39,68,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.1em;
}
.product-card-body { padding: 0; }
.product-card-collection {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-card-short {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
}
.product-card-colors { display: flex; gap: 6px; align-items: center; }
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: inline-block;
}
.color-dot--sage { background: #B5C4B1; }
.color-dot--noir { background: #1B2A4A; }
.color-dot--chocolat { background: #6B4C3B; }
.color-dot--sable { background: #D4C5A9; }

/* Shop Values Strip */
.shop-values {
  background: var(--bg-warm);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 56px 40px;
}
.shop-values-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.shop-value { text-align: center; }
.shop-value-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.shop-value-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}
.shop-value-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ================================
   PRODUCT PAGE
   ================================ */

.product-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 96px;
}

/* Breadcrumb */
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  margin-bottom: 48px;
}
.product-breadcrumb a { color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.product-breadcrumb a:hover { color: var(--fg); }
.product-breadcrumb-sep { opacity: 0.4; }

/* Product Layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Gallery */
.product-gallery { position: sticky; top: 40px; }
.gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg-warm);
}
.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-main:hover .gallery-main-img { transform: scale(1.03); }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-thumb {
  background: none;
  border: 1px solid rgba(201,169,110,0.2);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1;
  transition: border-color 0.2s;
}
.gallery-thumb:hover { border-color: var(--gold); }
.gallery-thumb--active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Product Info */
.product-info { padding-top: 8px; }
.product-info-collection {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 4px;
  line-height: 1.1;
}
.product-color-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 28px;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Color Selector */
.product-colors { margin-bottom: 32px; }
.product-colors-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 12px;
}
.product-color-swatches { display: flex; gap: 12px; flex-wrap: wrap; }
.color-swatch-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  padding: 8px;
  border: 1px solid rgba(201,169,110,0.15);
  transition: border-color 0.2s;
  min-width: 64px;
}
.color-swatch-btn:hover { border-color: var(--gold); }
.color-swatch-btn--active { border-color: var(--gold); }
.color-swatch-inner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: block;
}
.color-swatch-inner--sage { background: #B5C4B1; }
.color-swatch-inner--noir { background: #1B2A4A; }
.color-swatch-inner--chocolat { background: #6B4C3B; }
.color-swatch-inner--sable { background: #D4C5A9; }
.color-swatch-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Size Selector */
.product-sizes { margin-bottom: 32px; }
.product-sizes-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 12px;
}
.product-size-guide-link {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  font-weight: 400;
  text-transform: none;
}
.product-size-guide-link:hover { text-decoration: underline; }
.product-size-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  min-width: 52px;
  height: 44px;
  border: 1px solid rgba(201,169,110,0.3);
  background: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--fg);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0 8px;
}
.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn--active { background: var(--midnight); color: var(--white); border-color: var(--midnight); }

/* Add to Cart Button */
.btn-add-to-cart {
  display: block;
  width: 100%;
  background: var(--fg);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 16px;
}
.btn-add-to-cart:hover { background: var(--midnight); }
.product-shipping-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.03em;
}

/* Accordion */
.product-accordion { border-top: 1px solid rgba(201,169,110,0.15); }
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  cursor: pointer;
  text-align: left;
}
.accordion-icon { transition: transform 0.3s ease; }
.accordion-content--closed { display: none; }
.accordion-inner { padding-bottom: 20px; }
.accordion-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.accordion-row-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.accordion-row-val { font-family: var(--font-display); font-size: 0.9rem; color: var(--fg); }
.accordion-care-text { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.7; }

/* Related Products */
.related-products {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.related-products-header { margin-bottom: 48px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}

/* ================================
   CART PAGE
   ================================ */

.cart-page { max-width: var(--max-width); margin: 0 auto; padding: 0 40px 96px; }
.cart-inner { padding-top: 64px; }
.cart-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 48px;
}
.cart-title em { font-style: italic; color: var(--midnight); }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.cart-item-image { width: 80px; height: 100px; object-fit: cover; background: var(--bg-warm); }
.cart-item-name { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--fg); }
.cart-item-size { font-size: 0.78rem; color: var(--fg-muted); margin-top: 4px; }
.cart-item-price { font-family: var(--font-display); font-size: 1rem; color: var(--fg); }
.cart-item-remove {
  background: none; border: none; cursor: pointer; color: var(--fg-muted);
  font-size: 0.85rem; padding: 4px; transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--fg); }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty-text { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--fg-muted); margin-bottom: 32px; }
.cart-summary { margin-top: 48px; max-width: 400px; margin-left: auto; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 12px 0; font-size: 0.9rem; color: var(--fg); }
.cart-summary-row--muted { color: var(--fg-muted); font-size: 0.82rem; }
.cart-summary-row--total { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.cart-summary-divider { height: 1px; background: rgba(201,169,110,0.2); margin: 8px 0; }
.cart-checkout-note { font-size: 0.72rem; color: var(--fg-muted); text-align: center; margin-top: 12px; }

/* ================================
   SIZE GUIDE PAGE
   ================================ */

.size-guide-page { max-width: var(--max-width); margin: 0 auto; padding: 0 40px 96px; }
.size-guide-inner { padding-top: 64px; }
.size-guide-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 20px;
  margin-top: 16px;
}
.size-guide-title em { font-style: italic; color: var(--midnight); }
.size-guide-intro { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7; max-width: 600px; margin-bottom: 56px; }
.size-chart-section { margin-bottom: 56px; }
.size-chart-heading { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--fg); margin-bottom: 8px; }
.size-chart-note { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.6; }
.size-table { width: 100%; border-collapse: collapse; }
.size-table th {
  text-align: left;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(201,169,110,0.3);
}
.size-table td {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--fg);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.size-table tr:hover td { background: var(--bg-warm); }
.size-measure-guide { margin-bottom: 56px; }
.measure-steps { display: grid; gap: 24px; max-width: 560px; }
.measure-step { display: flex; gap: 20px; align-items: flex-start; }
.measure-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
}
.measure-step-body h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--fg); margin-bottom: 4px; }
.measure-step-body p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.size-guide-cta { text-align: center; padding: 40px 0; border-top: 1px solid rgba(201,169,110,0.15); }
.size-guide-cta-text { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--fg-muted); margin-bottom: 20px; }

/* ================================
   404 PAGE
   ================================ */

.not-found-page { max-width: var(--max-width); margin: 0 auto; padding: 0 40px 96px; min-height: 60vh; display: flex; align-items: center; }
.not-found-inner { text-align: center; padding: 80px 0; }
.not-found-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 20px;
}
.not-found-title em { font-style: italic; color: var(--midnight); }
.not-found-text { font-size: 1rem; color: var(--fg-muted); margin-bottom: 40px; }

/* ================================
   SHARED BUTTONS
   ================================ */

.btn-primary {
  display: inline-block;
  background: var(--fg);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.btn-primary:hover { background: var(--midnight); }
.btn-primary--full { display: block; text-align: center; }

/* ================================
   RESPONSIVE ---- */
@media (max-width: 900px) {
  :root { --section-padding: 72px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 60px; }
  .hero-right { display: none; }
  .hero-left { padding-right: 0; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; gap: 36px; }
  .craft-details { grid-template-columns: 1fr; gap: 24px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .shop-values-inner { grid-template-columns: 1fr; gap: 32px; }
  .related-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 60px 1fr auto; gap: 16px; }
  .cart-item-price { grid-column: 3; }
  .cart-item-remove { display: none; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 2.8rem; }
  .journey-grid { grid-template-columns: 1fr; }
  .nav { padding: 20px 16px; }
  .hero { padding-left: 16px; padding-right: 16px; }
  .brand-page, .collection-page, .product-page, .cart-page, .size-guide-page { padding: 0 16px 60px; }
  .color-palette { grid-template-columns: repeat(3, 1fr); }
  .brand-grid, .voice-grid, .brief-grid { grid-template-columns: 1fr; }
  .pieces-grid { grid-template-columns: 1fr; }
  .collection-meta { gap: 24px; }
  .style-guide-strip { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-filter { padding: 0 16px; }
  .shop-filter-inner { gap: 20px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .size-table { font-size: 0.82rem; }
  .size-table td, .size-table th { padding: 8px 10px; }
}