/* Studio Belmont Trade Portal — matches studiobelmontco.com aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #c9b273;
  --gold-dark: #b39a5d;
  --gold-light: #e0cf9f;
  --charcoal: #2b2b2b;
  --dark: #1c1c1c;
  --dark-soft: #414042;
  --gray: #6d6d6d;
  --gray-light: #d8d6d2;
  --bg-stone: #f4f1ec;
  --bg-cream: #faf8f4;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .7; }

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

/* ---------- Header ---------- */
.header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 48px;
  gap: 24px;
}
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 8px 14px;
  max-width: 280px;
  background: #fff;
}
.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--charcoal);
}
.search-box .icon { color: var(--gray); font-size: 14px; }

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--charcoal);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  position: relative;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--charcoal);
}
.logo-mark span {
  transform: rotate(-45deg);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--charcoal);
}
.logo-text {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 400;
  color: var(--charcoal);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.icon-btn {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 18px;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .25s ease;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-dark); opacity: 1; }

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background .25s ease;
  text-transform: uppercase;
  display: inline-block;
}
.btn-dark:hover { background: #000; opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 11px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all .25s ease;
  text-transform: uppercase;
  display: inline-block;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); opacity: 1; }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.7);
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all .25s ease;
  text-transform: uppercase;
  display: inline-block;
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); opacity: 1; }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  padding: 14px 48px 20px;
  border-top: 1px solid #f0eeea;
}
.nav a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--charcoal);
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Trade Bar (sub-nav) ---------- */
.trade-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.trade-bar .gold { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(rgba(28,28,28,.55), rgba(28,28,28,.55)),
              url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1800&q=85') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 80px 48px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  max-width: 900px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.hero p {
  font-size: 15px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section { padding: 96px 48px; }
.section-dark { background: var(--dark); color: var(--white); }
.section-stone { background: var(--bg-stone); }
.section-cream { background: var(--bg-cream); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-head p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}
.section-dark .section-head p { color: rgba(255,255,255,.75); }

/* ---------- Benefits grid ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  max-width: 1280px;
  margin: 0 auto;
}
.benefit {
  background: var(--dark);
  padding: 48px 32px;
  text-align: center;
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold);
  font-size: 22px;
}
.benefit h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--white);
}
.benefit p {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- Sign in split ---------- */
.split {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.split-image {
  background: linear-gradient(rgba(28,28,28,.35), rgba(28,28,28,.35)),
              url('https://images.unsplash.com/photo-1556912173-3bb406ef7e77?w=1200&q=85') center/cover;
  min-height: 580px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.split-image h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}
.split-image p { font-size: 14px; font-weight: 300; opacity: .9; }

.form-card {
  background: var(--white);
  padding: 64px 56px;
}
.form-card h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.form-card .lead {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 38px;
  font-weight: 300;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color .25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold); }
.field textarea { resize: vertical; min-height: 80px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 28px;
  font-size: 12px;
}
.form-foot a { color: var(--gold-dark); text-decoration: underline; }

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
}

.btn-block { width: 100%; padding: 16px; font-size: 12px; }

.divider {
  text-align: center;
  margin: 28px 0;
  position: relative;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: #eee;
}
.divider::before { left: 0; }
.divider::after { right: 0; }

/* ---------- Dashboard ---------- */
.dash-wrap { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 175px); }
.dash-sidebar {
  background: var(--bg-cream);
  border-right: 1px solid #eee;
  padding: 40px 0;
}
.dash-user {
  padding: 0 28px 28px;
  border-bottom: 1px solid #e8e4dc;
  margin-bottom: 22px;
}
.dash-user .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 14px;
}
.dash-user .name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.dash-user .firm { font-size: 12px; color: var(--gray); }
.dash-user .tier {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dash-nav { list-style: none; }
.dash-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-left: 2px solid transparent;
}
.dash-nav li a.active {
  background: var(--white);
  border-left-color: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
}
.dash-nav li a:hover { opacity: 1; background: rgba(0,0,0,.03); }
.dash-nav .icon { font-size: 14px; width: 18px; text-align: center; color: var(--gold); }

.dash-main { padding: 48px 56px; background: #fafafa; }
.dash-greet {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.dash-greet h1 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--charcoal);
}
.dash-greet h1 em { font-style: italic; color: var(--gold-dark); }
.dash-greet p { font-size: 13px; color: var(--gray); margin-top: 4px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.stat-card {
  background: var(--white);
  padding: 26px 28px;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 32px;
  background: var(--gold);
}
.stat-card .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.stat-card .value {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.stat-card .delta {
  font-size: 12px;
  color: #6ba368;
  margin-top: 6px;
}
.stat-card .delta.neg { color: #c47a5a; }

.panel {
  background: var(--white);
  border: 1px solid #eee;
  margin-bottom: 28px;
}
.panel-head {
  padding: 22px 28px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-head h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
}
.panel-head a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.panel-body { padding: 0; }

.table { width: 100%; border-collapse: collapse; }
.table th,
.table td {
  text-align: left;
  padding: 18px 28px;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}
.table th {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  background: #fafafa;
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: #fcfbf7; }
.table .proj-name { font-family: var(--serif); font-size: 16px; color: var(--charcoal); }
.table .meta { font-size: 12px; color: var(--gray); }

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
}
.badge-active { background: rgba(107,163,104,.15); color: #4f7e4d; }
.badge-pending { background: rgba(201,178,115,.2); color: var(--gold-dark); }
.badge-quoted { background: rgba(70,99,140,.15); color: #46638c; }
.badge-completed { background: rgba(0,0,0,.08); color: var(--gray); }

.row-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.row-actions a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

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

.activity-list { list-style: none; padding: 0; }
.activity-list li {
  padding: 18px 28px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.activity-list li:last-child { border-bottom: none; }
.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}
.activity-text { font-size: 13px; color: var(--charcoal); line-height: 1.6; }
.activity-time { font-size: 11px; color: var(--gray); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }

.quick-actions { display: grid; gap: 1px; background: #eee; }
.quick-action {
  background: var(--white);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: background .2s ease;
}
.quick-action:hover { background: #fcfbf7; opacity: 1; }
.quick-action .qa-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.quick-action .qa-title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.quick-action .qa-sub { font-size: 12px; color: var(--gray); }

/* ---------- Catalog ---------- */
.catalog-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 48px 56px; }
.filters h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}
.filters .filter-group { margin-bottom: 28px; }
.filters ul { list-style: none; }
.filters li {
  font-size: 13px;
  padding: 6px 0;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.filters li:hover { color: var(--gold-dark); }
.filters li .count { color: var(--gray); font-size: 11px; }

.cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}
.cat-head h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--charcoal);
}
.cat-head .meta { font-size: 12px; color: var(--gray); }

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product {
  background: var(--white);
  border: 1px solid #eee;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.product:hover { box-shadow: 0 14px 36px rgba(0,0,0,.08); transform: translateY(-2px); }
.product .img {
  aspect-ratio: 4 / 3;
  background: var(--bg-stone);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product .img img { width: 100%; height: 100%; object-fit: cover; }
.product .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.product .body { padding: 22px 22px 26px; }
.product .brand {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.product .name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product .price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.product .retail {
  font-size: 12px;
  color: var(--gray);
  text-decoration: line-through;
}
.product .trade {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--charcoal);
  font-weight: 500;
}
.product .trade small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-top: -2px;
}

/* ---------- Quote form ---------- */
.quote-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 48px;
}
.quote-wrap h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
}
.quote-wrap .lead {
  text-align: center;
  color: var(--gray);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 48px;
}
.quote-section {
  background: var(--white);
  padding: 40px 48px;
  border: 1px solid #eee;
  margin-bottom: 24px;
}
.quote-section h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.quote-section .step {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.quote-section .hint { font-size: 13px; color: var(--gray); margin-bottom: 28px; }

.line-items { width: 100%; }
.line-items th { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); padding: 10px 0; text-align: left; border-bottom: 1px solid #eee; }
.line-items td { padding: 14px 0; border-bottom: 1px solid #f4f4f4; }
.line-items input { width: 100%; padding: 8px 10px; border: 1px solid #e5e5e5; font-family: var(--sans); font-size: 13px; }
.line-items .remove { color: var(--gray); cursor: pointer; font-size: 18px; }
.add-line { margin-top: 16px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.add-line:hover { color: var(--gold); opacity: 1; }

.quote-cta { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.quote-cta .note { font-size: 12px; color: var(--gray); max-width: 380px; line-height: 1.6; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 48px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto 40px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,.7); }
.footer li a:hover { color: var(--gold); opacity: 1; }
.footer .brand-block { max-width: 320px; }
.footer .brand-block p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.7); margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.5px;
}

/* ---------- Side rail ---------- */
.side-rail {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 30;
}
.side-rail a {
  width: 36px;
  height: 36px;
  background: rgba(28,28,28,.85);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 2px;
}
.side-rail a:hover { background: var(--gold); opacity: 1; }

/* ---------- Utility ---------- */
.container { max-width: 1280px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }
.mb-lg { margin-bottom: 40px; }
.gold-text { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .header-top { grid-template-columns: 1fr; padding: 16px 20px; gap: 12px; }
  .header-right { justify-content: center; }
  .nav { flex-wrap: wrap; gap: 14px 22px; padding: 12px 20px; }
  .hero h1 { font-size: 44px; }
  .section { padding: 64px 20px; }
  .section-head h2 { font-size: 34px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-image { min-height: 280px; }
  .form-card { padding: 40px 28px; }
  .dash-wrap { grid-template-columns: 1fr; }
  .dash-sidebar { border-right: none; border-bottom: 1px solid #eee; }
  .dash-main { padding: 32px 20px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .dash-grid-2 { grid-template-columns: 1fr; }
  .catalog-wrap { grid-template-columns: 1fr; padding: 32px 20px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}
