:root {
  --gold: #C9A227;
  --gold-deep: #8A5A18;
  --vault: #14140F;
  --plate: #1E1E18;
  --bone: #E8E4D9;
  --muted: #8A8578;
  --paper: #F5F3EE;
  --white: #FFFFFF;
  --line: #DDD8CC;
  --ink: #14140F;
  --radius: 10px;
  --wrap: 1180px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Cinzel", Georgia, serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--paper); line-height: 1.55; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0 0 .4em; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700; }
h2 { font-size: 1.35rem; font-weight: 700; }
h3 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 .8em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.muted { color: var(--muted); }
.eyebrow { font-family: var(--display); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .6em; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4em; padding: .6em 1.05em; border-radius: 8px; border: 1px solid transparent; font: inherit; font-weight: 600; text-decoration: none; cursor: pointer; white-space: nowrap; transition: background .15s, border-color .15s, color .15s; }
.btn-gold { background: var(--gold); color: var(--vault); border-color: var(--gold); }
.btn-gold:hover { background: #d9b33a; }
.btn-dark { background: var(--vault); color: var(--paper); }
.btn-dark:hover { background: var(--plate); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: .8em 1.4em; font-size: 1rem; }
.text-link { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

/* header */
.site-header { background: var(--vault); color: var(--paper); position: sticky; top: 0; z-index: 20; border-bottom: 1px solid #2a2a22; }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.logo img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav-link { color: var(--bone); text-decoration: none; font-weight: 500; font-size: .95rem; white-space: nowrap; }
.card-price .muted { font-size: .78rem; font-weight: 400; }
.nav-link:hover, .nav-current { color: var(--gold); }
.nav-quiet { color: var(--muted); font-size: .85rem; }
@media (max-width: 720px) { .nav-quiet, .nav .nav-link:not(.nav-current) { display: none; } .logo img { height: 32px; } }

/* hero */
.hero { background: var(--vault); color: var(--paper); padding: 48px 0 40px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--white); max-width: 18ch; }
.hero .lede { color: var(--bone); max-width: 62ch; font-size: 1.05rem; }
.hero a { color: var(--gold); }
.search { display: flex; gap: 10px; max-width: 720px; margin-top: 22px; }
.search input { flex: 1; min-width: 0; font: inherit; font-size: 1rem; padding: .8em 1em; border-radius: 8px; border: 1px solid #3a3a30; background: var(--plate); color: var(--white); }
.search input::placeholder { color: var(--muted); }
.search input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }

/* featured */
.featured { padding: 40px 0 8px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.section-head h2 { margin: 0; }

/* grid + cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.grid-featured { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
@media (max-width: 480px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: border-color .15s, transform .15s, box-shadow .15s; }
.card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(20,20,15,.08); }
.card-img { aspect-ratio: 1; background: var(--white); display: flex; align-items: center; justify-content: center; padding: 12px; }
.card-img img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.card-body { padding: 12px 14px 14px; border-top: 1px solid var(--line); }
.card-brand { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 4px; }
.card-title { font-size: .95rem; font-weight: 600; margin: 0 0 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-price { margin: 0; font-size: .9rem; color: var(--ink); }
.card-price strong { font-weight: 600; }
.card-colors { margin: 4px 0 0; font-size: .78rem; color: var(--muted); }

/* filters */
.catalog { padding: 28px 0 48px; }
.filters { position: sticky; top: 64px; z-index: 10; background: var(--paper); padding: 12px 0 10px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.chip { font: inherit; font-size: .88rem; font-weight: 500; padding: .38em .9em; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; }
.chip:hover { border-color: var(--ink); }
.chip-on { background: var(--vault); color: var(--gold); border-color: var(--vault); }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: end; }
.filter-row label { display: flex; flex-direction: column; gap: 4px; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.filter-row select { font: inherit; font-size: .92rem; padding: .45em .6em; border-radius: 8px; border: 1px solid var(--line); background: var(--white); color: var(--ink); min-width: 150px; }
.result-count { margin: 10px 0 0; font-size: .88rem; color: var(--muted); }
.more-row { text-align: center; margin-top: 24px; }
.empty { text-align: center; padding: 40px 0; color: var(--muted); }
.empty a { color: var(--gold-deep); }
@media (max-width: 720px) { .filters { position: static; } .filter-row select { min-width: 0; width: 100%; } .filter-row label { flex: 1 1 45%; } }

/* how it works */
.how { background: var(--white); border-top: 1px solid var(--line); padding: 48px 0 56px; text-align: center; }
.steps { list-style: none; padding: 0; margin: 20px auto 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 900px; text-align: left; }
.steps li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.step-num { display: inline-flex; width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--vault); font-weight: 700; align-items: center; justify-content: center; margin-bottom: 10px; font-size: .9rem; }
.steps p { color: var(--muted); margin: 0; font-size: .95rem; }

/* product page */
.crumbs { font-size: .85rem; color: var(--muted); padding: 18px 0 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.product { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 36px; padding-bottom: 40px; }
@media (max-width: 860px) { .product { grid-template-columns: 1fr; gap: 20px; } }
.gallery-main { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 24px; }
.gallery-main img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.thumb { width: 64px; height: 64px; border-radius: 8px; border: 1px solid var(--line); background: var(--white); padding: 4px; cursor: pointer; }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb-on, .thumb:hover { border-color: var(--gold); }
.info h1 { margin-bottom: .25em; }
.meta { color: var(--muted); font-size: .9rem; }
.meta .brand { color: var(--ink); font-weight: 600; }
.pricebox { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 14px 16px; margin: 16px 0; }
.price-from { font-size: 1.05rem; margin: 0 0 2px; }
.price-from strong { font-size: 1.5rem; font-weight: 700; }
.price-from span { color: var(--muted); font-size: .9rem; }
.price-program { margin: 0 0 6px; font-weight: 500; }
.price-note { color: var(--muted); font-size: .82rem; margin: 0; }
.cta { display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 20px; }
.desc { font-size: 1rem; color: #3a3a30; }
.block { margin-top: 22px; }
.block h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.block h2 .count { font-weight: 400; text-transform: none; letter-spacing: 0; }
.swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.swatch { display: flex; align-items: center; gap: 8px; font: inherit; font-size: .85rem; padding: 4px 10px 4px 4px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); cursor: pointer; color: var(--ink); }
.swatch img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.swatch:hover, .swatch-on { border-color: var(--gold); }
.sizes { font-weight: 500; }
.deco { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.deco li { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; font-size: .92rem; }
.deco .locs { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
details.block { border-top: 1px solid var(--line); padding-top: 12px; }
details.block summary { cursor: pointer; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; color: var(--muted); }
.tiers { width: 100%; border-collapse: collapse; margin: 12px 0 8px; font-size: .92rem; background: var(--white); }
.tiers th, .tiers td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.tiers th { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.details { display: grid; grid-template-columns: max-content 1fr; gap: 6px 16px; margin: 12px 0 0; font-size: .92rem; }
.details dt { color: var(--muted); }
.details dd { margin: 0; }
.related { padding: 12px 0 48px; border-top: 1px solid var(--line); margin-top: 8px; }
.related .section-head { margin-top: 24px; }
.loading { padding: 60px 0; color: var(--muted); }

/* footer */
.site-footer { background: var(--vault); color: var(--bone); padding: 44px 0 36px; margin-top: 8px; }
.footer-grid { display: grid; grid-template-columns: 160px 1fr 1.4fr; gap: 32px; align-items: start; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-logo { width: 96px; height: auto; margin-bottom: 8px; }
.tagline { font-family: var(--display); color: var(--gold); font-size: 1rem; letter-spacing: .04em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--bone); text-decoration: none; font-size: .95rem; }
.footer-links a:hover { color: var(--gold); }
.footer-note { font-size: .82rem; color: var(--muted); }
.footer-note p { margin-bottom: .5em; }
