:root {
  --ebony: #1E1A16;
  --walnut: #6B4C32;
  --oak: #C4965A;
  --birch: #F5F0E8;
  --cream: #FAF7F2;
  --teal: #1D9E75;
  --muted: #8A7E72;
  --border: rgba(30, 26, 22, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ebony);
  overflow-x: hidden;
}

/* Better defaults */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

/* Keyboard focus (accessibility) */
:where(a, button, [role="button"], input, select, textarea):focus {
  outline: none;
}

:where(a, button, [role="button"], input, select, textarea):focus-visible {
  outline: 2px solid rgba(196, 150, 90, .65);
  outline-offset: 3px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 112px;
  background: rgba(250, 247, 242, 0.93);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img:not(.site-logo) {
  display: none;
}

.site-logo {
  display: block;
  object-fit: contain;
}

.site-logo-nav {
  height: 108px;
  width: auto;
  max-width: 340px;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ebony);
  line-height: 1.15;
}

.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 300;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oak);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--ebony);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-fb {
  font-size: 12px;
  color: var(--oak);
  text-decoration: none;
  letter-spacing: .04em;
  transition: opacity .2s;
}

.nav-fb:hover {
  opacity: .7;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ebony);
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform .2s, opacity .2s;
}

nav.nav-open .nav-burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

nav.nav-open .nav-burger span:nth-child(2) {
  opacity: 0;
}

nav.nav-open .nav-burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--ebony);
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon {
  display: block;
}

.cart-btn:hover {
  opacity: .6;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -6px;
  width: 17px;
  height: 17px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 168px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(30, 26, 22, .018) 40px, rgba(30, 26, 22, .018) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(30, 26, 22, .018) 40px, rgba(30, 26, 22, .018) 41px);
}

.hero-accent {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 150, 90, .1) 0%, transparent 70%);
  z-index: 0;
}

/* Hero image grid */
.hero-imgs {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  z-index: 0;
  overflow: hidden;
}

.hero-img-cell {
  overflow: hidden;
  position: relative;
}

.hero-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.hero-img-cell:hover img {
  transform: scale(1.05);
}

.hero-img-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 22, .15);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(50px, 6.5vw, 84px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--ebony);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--walnut);
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--oak);
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 2px solid rgba(196, 150, 90, .4);
  line-height: 1.6;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--ebony);
  color: var(--birch);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .15s;
}

.btn-primary:hover {
  background: var(--walnut);
}

.btn-primary:active {
  transform: scale(.98);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: var(--ebony);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(30, 26, 22, .3);
  cursor: pointer;
  transition: all .25s;
}

.btn-ghost:hover {
  border-color: var(--ebony);
  background: rgba(30, 26, 22, .04);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: calc(42% + 48px);
  z-index: 1;
  display: flex;
  gap: 40px;
}

.stat {
  text-align: right;
}

.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--ebony);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--ebony);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, .5);
  padding: 0 36px;
}

.marquee-dot {
  color: var(--oak);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SECTIONS ── */
.section {
  padding: 100px 48px;
}

.section-alt {
  background: var(--birch);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ebony);
}

.section-title em {
  font-style: italic;
  color: var(--walnut);
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 32px;
}

.shop-search-wrap {
  flex: 1 1 220px;
  max-width: 360px;
}

.shop-search-label {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 8px;
}

.shop-search-input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ebony);
  background: var(--birch);
  border: 1px solid var(--border);
}

.shop-search-input:focus {
  outline: none;
  border-color: var(--oak);
}

.shop-search-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: var(--muted);
  font-size: 15px;
}

/* ── CATALOGUE ── */
.cat-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ebony);
  color: var(--birch);
  border-color: var(--ebony);
}

.album-overview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.album-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  border: 1px solid rgba(30, 26, 22, .1);
  background: var(--birch);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}

.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 26, 22, .12);
}

.album-cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.album-card:hover .album-cover img {
  transform: scale(1.04);
}

.album-card-body {
  padding: 18px 20px 20px;
}

.album-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ebony);
  line-height: 1.15;
  margin-bottom: 6px;
}

.album-card-count {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--oak);
}

.products-load-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.products-load-more {
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ebony);
  border: 1px solid rgba(30, 26, 22, .2);
  cursor: pointer;
  transition: all .2s;
}

.products-load-more:hover {
  background: var(--ebony);
  color: var(--birch);
  border-color: var(--ebony);
}

.filter-btn-explicit {
  border-color: rgba(107, 76, 50, .45);
  color: var(--walnut);
}

.filter-btn-explicit.active,
.filter-btn-explicit:hover {
  background: var(--walnut);
  border-color: var(--walnut);
  color: var(--birch);
}

.album-card-explicit .album-cover img {
  filter: blur(14px);
  transform: scale(1.08);
}

.album-explicit-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  background: var(--walnut);
  color: var(--birch);
  border-radius: 2px;
  z-index: 2;
}

.album-card-explicit {
  position: relative;
}

.product-card.is-explicit .product-img img {
  filter: blur(16px);
  transform: scale(1.06);
}

.product-card.is-explicit.revealed .product-img img,
.modal-img-explicit.revealed img {
  filter: none;
  transform: none;
}

.product-card.is-explicit.revealed .explicit-blur-cover,
.product-card.is-explicit.revealed .explicit-reveal-btn,
.modal-img-explicit.revealed .explicit-blur-cover,
.modal-img-explicit.revealed .explicit-reveal-btn {
  display: none;
}

.product-img,
.modal-img-explicit {
  position: relative;
}

.explicit-blur-cover {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 22, .18);
  pointer-events: none;
  z-index: 2;
}

.explicit-reveal-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--walnut);
  color: var(--birch);
  border: none;
  cursor: pointer;
}

.badge-explicit {
  background: var(--walnut);
  color: var(--birch);
}

.modal-img-explicit {
  position: relative;
  min-height: 280px;
}

.modal-img-explicit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.product-card {
  background: var(--birch);
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 22, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.product-card:hover .product-overlay {
  background: rgba(30, 26, 22, .1);
}

.overlay-btn {
  padding: 10px 24px;
  background: var(--cream);
  color: var(--ebony);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: all .25s;
}

.product-card:hover .overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

.badge-teal {
  background: var(--teal);
  color: #fff;
}

.badge-walnut {
  background: var(--walnut);
  color: #fff;
}

.product-info {
  padding: 20px 24px 24px;
}

.product-category {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ebony);
  line-height: 1.2;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ebony);
}

.product-price small {
  font-size: 14px;
  color: var(--muted);
}

.add-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: var(--ebony);
  color: var(--birch);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
}

.add-btn:hover {
  background: var(--walnut);
}

.add-btn:active {
  transform: scale(.92);
}

/* ── ABOUT / STALL ── */
.about-section {
  background: var(--ebony);
  padding: 100px 48px 0;
  margin-bottom: 0;
  position: relative;
}

.about-section::after {
  content: "";
  display: block;
  width: min(920px, 100%);
  height: 1px;
  margin: 72px auto 0;
  background: linear-gradient(90deg, transparent, rgba(196, 150, 90, .42), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img {
  overflow: hidden;
  border-radius: 2px;
}

.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text .section-eyebrow {
  color: var(--oak);
}

.about-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--birch);
  margin-bottom: 20px;
}

.about-title em {
  font-style: italic;
  color: var(--oak);
}

.about-lead {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 240, 232, .55);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-hl {
  border-left: 2px solid rgba(196, 150, 90, .3);
  padding-left: 16px;
}

.about-hl h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--birch);
  margin-bottom: 4px;
}

.about-hl p {
  font-size: 12px;
  color: rgba(245, 240, 232, .45);
  line-height: 1.6;
}

/* ── CUSTOM ORDER ── */
.custom-section {
  background: var(--ebony);
  padding: 100px 48px;
}

.custom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.custom-left .section-eyebrow {
  color: var(--oak);
}

.custom-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--birch);
  margin-bottom: 16px;
}

.custom-title em {
  font-style: italic;
  color: var(--oak);
}

.custom-lead {
  font-size: 15px;
  color: rgba(245, 240, 232, .55);
  line-height: 1.8;
  margin-bottom: 48px;
}

.step-row {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(245, 240, 232, .07);
}

.step-row:last-child {
  border-bottom: none;
}

.step-n {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: rgba(196, 150, 90, .3);
  flex-shrink: 0;
  width: 46px;
  line-height: 1;
}

.step-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--birch);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 13px;
  color: rgba(245, 240, 232, .45);
  line-height: 1.7;
}

.custom-form-wrapper {
  background: var(--cream);
  padding: 40px;
}

.form-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ebony);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ebony);
  background: var(--birch);
  border: 1px solid var(--border);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--walnut);
}

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

.char-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.char-opt {
  padding: 7px 16px;
  background: var(--birch);
  color: var(--muted);
  border: 1px solid var(--border);
  font-size: 12px;
  cursor: pointer;
  transition: all .18s;
}

.char-opt.selected {
  background: var(--ebony);
  color: var(--birch);
  border-color: var(--ebony);
}

.upload-zone {
  border: 1px dashed rgba(30, 26, 22, .25);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.upload-zone:hover {
  border-color: var(--walnut);
  background: rgba(196, 150, 90, .04);
}

.upload-text {
  font-size: 13px;
  color: var(--muted);
}

.upload-text strong {
  color: var(--ebony);
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--ebony);
  color: var(--birch);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background .25s;
}

.form-submit:hover {
  background: var(--walnut);
}

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

.review-card {
  background: var(--birch);
  padding: 40px 36px;
}

.stars {
  color: var(--oak);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.review-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ebony);
  margin-bottom: 28px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--birch);
}

.reviewer-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ebony);
}

.reviewer-tag {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 2px;
}

/* ── MARKETS ── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  align-items: start;
}

.market-card {
  background: var(--birch);
  overflow: hidden;
}

.market-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}

.market-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.market-card-body {
  padding: 32px 28px 36px;
}

.market-card-date {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 10px;
}

.market-card-location {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ebony);
  margin: 0 0 12px;
}

.market-card-time {
  font-size: 14px;
  color: var(--walnut);
  margin-bottom: 10px;
}

.market-card-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.process-step {
  background: var(--cream);
  padding: 40px 32px;
}

.process-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 28px;
}

.process-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--oak);
  letter-spacing: .1em;
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ebony);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, #171310 0%, var(--ebony) 140px);
  padding: 64px 48px 40px;
  border-top: none;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) repeat(3, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 240, 232, .1);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 520px;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 420px;
}

.footer-logo-mark {
  display: block;
  flex: 0 0 auto;
  height: 92px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .82;
}

.footer-brand-text {
  text-align: left;
  flex: 1 1 auto;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--birch);
  line-height: 1.1;
}

.footer-brand-name span {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oak);
}

.footer-brand-sub {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(196, 150, 90, .85);
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(245, 240, 232, .58);
  line-height: 1.75;
  width: 100%;
  max-width: 460px;
  margin: 0 0 20px;
}

.footer-email {
  font-size: 13px;
  color: rgba(196, 150, 90, .92);
  text-decoration: none;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(196, 150, 90, .28);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--oak);
  margin-top: 20px;
}

.footer-col-title {
  font-family: inherit;
  /* Наследует красивый шрифт вашего сайта */
  font-size: 14px;
  /* Увеличили с 11px для читаемости */
  font-weight: 600;
  /* Делаем полужирным, чтобы выделить заголовок */
  letter-spacing: .18em;
  /* Чуть увеличили разрядку для премиального вида */
  text-transform: uppercase;
  color: var(--oak);
  /* Цвет дуба/золота отлично подходит */
  margin-bottom: 24px;
  /* Немного увеличили отступ до ссылок */
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Чуть увеличили расстояние между ссылками */
}

.footer-links a {
  font-size: 14px;
  /* Сделали в один размер с заголовками для баланса */
  font-weight: 400;
  color: rgba(245, 240, 232, .75);
  /* ИСПРАВЛЕНО: подняли прозрачность с .38 до .75 (текст станет отчетливо виден) */
  text-decoration: none;
  transition: color .2s ease-in-out;
}

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



.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: rgba(245, 240, 232, .22);
}

.footer-demo-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(196, 150, 90, .75);
  text-decoration: none;
}

.footer-demo-link:hover {
  color: var(--birch);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(245, 240, 232, .22);
  text-decoration: none;
  transition: color .2s;
}

.footer-legal a:hover {
  color: rgba(245, 240, 232, .5);
}

.admin-link {
  color: rgba(245, 240, 232, .22);
  font-size: 10px;
  opacity: 0.5;
  text-decoration: none;
  margin-left: 6px;
}

.admin-link:hover {
  color: rgba(245, 240, 232, .5);
  opacity: 1;
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(30, 26, 22, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  width: 420px;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ebony);
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 44px;
  min-height: 44px;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}

.cart-close:hover {
  color: var(--ebony);
}

.cart-items {
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 32px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.cart-thumb {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-info {
  flex: 1;
}

.cart-item-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ebony);
  margin-bottom: 3px;
}

.cart-item-cat {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 7px;
}

.cart-item-price {
  font-size: 15px;
  color: var(--ebony);
  font-weight: 500;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  color: var(--muted);
  align-self: flex-start;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}

.cart-item-remove:hover {
  color: #c0392b;
}

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.cart-empty-icon {
  font-size: 44px;
  color: var(--muted);
}

.cart-empty p {
  font-size: 14px;
  color: var(--muted);
}

.cart-recs {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  min-width: 0;
}

.cart-recs-title {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 10px;
}

.cart-recs-grid {
  display: flex;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-recs .product-card {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: none;
}

.cart-recs .product-img {
  aspect-ratio: 1;
}

.cart-recs .product-info {
  padding: 8px 8px 10px;
}

.cart-recs .product-name {
  font-size: 13px;
  line-height: 1.25;
  height: 2.5em;
  margin-bottom: 4px;
  overflow: hidden;
}

.cart-recs .product-footer {
  margin-bottom: 0;
}

.cart-recs .product-price {
  font-size: 14px;
}

.cart-recs .product-card:hover {
  transform: none;
}

.cart-rec-add {
  opacity: 1;
  transform: none;
  width: 100%;
  margin-top: 6px;
  padding: 6px 8px;
  min-height: 44px;
  font-size: 10px;
}

.cart-recs .product-card:hover .cart-rec-add {
  opacity: 1;
  transform: none;
}

.cart-footer {
  flex-shrink: 0;
  padding: 24px 32px;
  border-top: 1px solid var(--border);
}

.cart-totals {
  margin-bottom: 8px;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.cart-total-row span:first-child {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-total-row span:last-child {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.cart-total-row-grand {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.cart-total-row-grand span:first-child {
  color: var(--ebony);
}

.cart-total-row-grand span:last-child {
  font-size: 24px;
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cart-subtotal span:first-child {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-subtotal span:last-child {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.cart-ship-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}

.cart-checkout-btn {
  width: 100%;
  padding: 18px;
  background: var(--ebony);
  color: var(--birch);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s;
}

.cart-checkout-btn:hover {
  background: var(--walnut);
}

.cart-checkout-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.cart-checkout-fields {
  margin-bottom: 18px;
  text-align: left;
}

.cart-field-label {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.cart-field-input {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid var(--border);
  background: var(--birch);
  font-family: var(--sans);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(30, 26, 22, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--cream);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.95);
  transition: transform .3s;
  position: relative;
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img {
  overflow: hidden;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 40px;
}

.modal-cat {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 10px;
}

.modal-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ebony);
  margin-bottom: 16px;
}

.modal-price {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ebony);
  margin-bottom: 24px;
}

.modal-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-mat {
  background: var(--birch);
  padding: 16px 20px;
  margin-bottom: 28px;
  border-left: 2px solid rgba(196, 150, 90, .4);
}

.modal-mat-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 6px;
}

.modal-mat-val {
  font-size: 13px;
  color: var(--ebony);
}

.modal-add-btn {
  width: 100%;
  padding: 16px;
  background: var(--ebony);
  color: var(--birch);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s;
}

.modal-add-btn:hover {
  background: var(--walnut);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(250, 247, 242, .92);
  border: none;
  cursor: pointer;
  min-width: 52px;
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ebony);
  z-index: 10;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: var(--ebony);
  color: var(--birch);
  padding: 13px 26px;
  font-size: 13px;
  letter-spacing: .06em;
  z-index: 500;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content>* {
  animation: fadeIn .8s ease forwards;
  opacity: 0;
}

.hero-content>*:nth-child(1) {
  animation-delay: .1s;
}

.hero-content>*:nth-child(2) {
  animation-delay: .25s;
}

.hero-content>*:nth-child(3) {
  animation-delay: .38s;
}

.hero-content>*:nth-child(4) {
  animation-delay: .5s;
}

.hero-content>*:nth-child(5) {
  animation-delay: .62s;
}

.hero-stats {
  animation: fadeIn .8s .7s ease forwards;
  opacity: 0;
}

.hero-imgs {
  animation: fadeIn 1s .2s ease forwards;
  opacity: 0;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

@media(max-width:960px) {
  nav {
    padding: 0 20px;
    height: 92px;
  }

  .site-logo-nav {
    height: 76px;
    max-width: 260px;
  }

  .footer-logo {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo-mark {
    height: 80px;
    max-width: 180px;
  }

  .footer-brand-text {
    text-align: center;
  }

  .footer-brand-col {
    max-width: 100%;
  }

  .nav-fb {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(30, 26, 22, .1);
  }

  nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    min-height: 44px;
  }

  .product-overlay {
    display: none;
  }

  .hero {
    padding: 128px 24px 60px;
  }

  .hero-imgs {
    display: none;
  }

  .hero-stats {
    right: 24px;
    bottom: 40px;
  }

  .section {
    padding: 72px 24px;
  }

  .about-section,
  .custom-section {
    padding: 72px 24px 0;
  }

  .about-section::after {
    margin-top: 48px;
  }

  .about-grid,
  .custom-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .markets-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand-col {
    grid-column: 1/-1;
  }

  footer {
    padding: 60px 24px 32px;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-img {
    aspect-ratio: 16/9;
  }

  .cart-drawer {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .products-grid,
  .album-overview {
    grid-template-columns: 1fr;
  }

  .market-card-body {
    padding: 20px 16px 24px;
  }

  .cart-header {
    padding: 20px 16px 16px;
  }

  .cart-items {
    padding: 16px;
  }

  .cart-footer {
    padding: 16px;
  }

  .cart-recs .product-card {
    flex: 1 1 110px;
    min-width: 110px;
  }
}