:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #161412;
  --line: #2e281c;
  --text: #f4efe4;
  --muted: #9a917f;
  --accent: #d4af37;
  --accent-2: #c5a059;
  --danger: #ff6a5a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --max: 1180px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --mail-blue: #0f6cbd;
  --mail-unread: #2899f5;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: #e8c872; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; margin: 0 0 0.4em; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 0.95; font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
p { margin: 0 0 1rem; }
button, input, select, textarea { font: inherit; color: inherit; }

.skip { position: absolute; left: -999px; }
.skip:focus {
  left: 12px; top: 12px;
  background: var(--accent); color: #111;
  padding: 8px 12px; z-index: 20;
}

.wrap { width: min(var(--max), calc(100% - 2.4rem)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 0.35rem 0 0.45rem;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--text);
}
.brand .apparel, .hero-apparel {
  display: block;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  color: var(--accent);
  line-height: 1;
}
.brand img.logo {
  height: 96px;
  width: auto;
  max-width: min(380px, 52vw);
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 2px 14px rgba(212, 175, 55, 0.28));
}
.site-footer .brand img.logo { height: 76px; max-width: min(300px, 70vw); }
.nav {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.nav a { color: var(--text); font-size: 0.92rem; font-weight: 600; }
.nav a:hover, .brand:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 0.85rem; }
.search input {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  width: 180px;
}
.icon-link, .bag-link { color: var(--text); font-weight: 700; font-size: 0.92rem; }
.mail-link { position: relative; }
.bag-count {
  display: inline-flex;
  min-width: 1.2rem; height: 1.2rem;
  margin-left: 0.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-size: 0.72rem;
  align-items: center; justify-content: center;
  padding: 0 0.3rem;
}
.btn-tiny {
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}
.nav-toggle {
  display: none; background: none; border: 0;
  width: 40px; height: 32px; padding: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 7px 0; }

.flashes { padding: 0.8rem 0 0; }
.flash {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
.flash-ok { border-color: var(--accent); }
.flash-err { border-color: var(--danger); color: #ffd0ca; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.eyebrow.lime, .lime { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 0;
  border-radius: 2px;
  padding: 0.85rem 1.3rem;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}
.btn:hover { background: #e8c872; color: #111; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }

.hero.hero-luxe {
  min-height: 0;
  padding: 2.6rem 0 2.5rem;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 2.5rem 4rem;
  align-items: center;
}
.hero-lockup { text-align: center; }
.hero.hero-luxe .hero-mark {
  width: min(240px, 70%);
  height: auto;
  margin: 0 auto 0.55rem;
}
.hero.hero-luxe .hero-apparel {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
}
.hero.hero-luxe .hero-copy {
  text-align: left;
  padding: 0 0 0 2.4rem;
  border-left: 1px solid rgba(212, 175, 55, 0.35);
}
.hero.hero-luxe .eyebrow { color: var(--accent); margin-bottom: 0.65rem; }
.hero.hero-luxe h1 {
  max-width: 14ch;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.12;
  color: #f4efe4;
  margin: 0 0 1.25rem;
}

.section { padding: 3.2rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.4rem;
  gap: 1rem;
}

.product-grid.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 1.3rem;
}
.card-instrument {
  background: transparent;
  border: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.card-instrument .card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #0c0c0c;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 4px;
}
.card-instrument .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: saturate(1.04);
}
.card-instrument:hover .card-media img { transform: scale(1.035); }
.card-instrument .card-body { padding: 0.95rem 0.1rem 0.2rem; }
.card-instrument .card-body h3 { font-size: 1.08rem; font-weight: 600; }
.card-instrument .card-body h3 a { color: var(--text); }
.card-instrument .card-body h3 a:hover { color: var(--accent); }
.price-row { display: flex; gap: 0.55rem; align-items: baseline; }
.price { font-weight: 800; letter-spacing: 0.02em; }
.price-row .ask { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-left: auto; }
.price-row.big .price { font-size: 1.7rem; font-family: var(--display); }

.badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #111;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.5rem; border-radius: 999px;
}
.badge-dark { background: #111; color: var(--text); left: auto; right: 10px; }

.cat-band { background: var(--bg-2); padding: 2rem 0; border-block: 1px solid var(--line); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.cat-tile {
  display: flex; flex-direction: column; gap: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.2rem 1.15rem;
  color: var(--text);
  min-height: 132px;
}
.cat-tile:hover { border-color: var(--accent); color: var(--text); }
.cat-tile strong { font-family: var(--display); font-size: 1.2rem; }
.cat-tile span:last-child { color: var(--muted); font-size: 0.88rem; }

.page-hero { padding: 2.4rem 0 0.4rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.lede { font-size: 1.08rem; color: #d8d3c8; max-width: 52ch; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 0; }
.chip {
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.chip.is-on, .chip:hover { border-color: var(--accent); color: var(--accent); }

.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.8rem;
  padding: 2rem 0 3rem;
  align-items: start;
}
.product-media {
  position: relative;
  background: #0c0c0c;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.product-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 38%;
}
.product-info h1 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 600; }
.meta-line { color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; font-weight: 700; }
.desc { color: #d5d0c6; font-size: 1.02rem; line-height: 1.65; }
.meta-list { color: var(--muted); padding-left: 1.1rem; }
.inquire-form, .buy-form { display: grid; gap: 1rem; margin: 1.2rem 0; }
.inquire-gate {
  margin-top: 1.4rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: var(--surface);
}
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.8rem; }

.how { padding-top: 1rem; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.how-steps { margin: 0; padding-left: 1.2rem; color: #d5d0c6; }
.how-steps li { margin: 0.55rem 0; }

.stack { display: grid; gap: 0.75rem; }
.stack label, form label {
  display: grid; gap: 0.3rem;
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
}
input[type=text], input[type=email], input[type=password], input[type=search],
input[type=number], select, textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  width: 100%;
}
textarea { resize: vertical; min-height: 8rem; }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.auth-wrap { min-height: 60vh; display: grid; place-items: center; padding: 3rem 1rem; }
.auth-panel {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.account-actions { display: flex; gap: 0.8rem; align-items: center; }
.inline-form { display: inline; }
.muted { color: var(--muted); }
.narrow-about h1 { max-width: 16ch; }

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  background: #090c0e;
  padding: 2.4rem 0 1.4rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 1.4rem; }
.footer-grid a { display: block; color: var(--text); margin: 0.25rem 0; }
.footer-grid a:hover { color: var(--accent); }
.footer-base {
  display: flex; justify-content: space-between; gap: 1rem;
  margin-top: 2rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.85rem;
}

/* Outlook mail */
body.mail-app { display: flex; flex-direction: column; min-height: 100vh; }
body.mail-app main { flex: 1; display: flex; min-height: 0; }
body.mail-app .flashes { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.outlook {
  display: grid;
  grid-template-columns: 220px 340px 1fr;
  width: 100%;
  min-height: calc(100vh - 132px);
  background: #1f1f1f;
  color: #f3f2f1;
  font-family: "Segoe UI", "Manrope", system-ui, sans-serif;
  border-top: 1px solid #2b2b2b;
}
.ol-folders {
  background: #1b1a19;
  border-right: 1px solid #2b2b2b;
  display: flex; flex-direction: column;
  padding: 0.85rem 0.7rem 0.9rem;
}
.ol-brand-mini {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.2rem 0.4rem 0.85rem;
  color: #fff; font-weight: 700;
}
.ol-brand-mini img { height: 28px; width: auto; }
.ol-new {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--mail-blue); color: #fff;
  font-weight: 650; border-radius: 4px;
  padding: 0.55rem 0.8rem; margin: 0 0.35rem 0.9rem;
}
.ol-new:hover { background: #115ea3; color: #fff; }
.ol-folder-list { display: grid; gap: 2px; }
.ol-group {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #a19f9d; margin: 0.3rem 0.55rem 0.25rem; font-weight: 700;
}
.ol-folder-list a {
  display: flex; align-items: center; gap: 0.55rem;
  color: #f3f2f1; padding: 0.45rem 0.55rem; border-radius: 4px; font-size: 0.92rem;
}
.ol-folder-list a em {
  margin-left: auto; color: #a19f9d; font-style: normal; font-size: 0.8rem;
}
.ol-folder-list a.is-on, .ol-folder-list a:hover { background: #292827; color: #fff; }
.ol-folder-list a.is-on { border-left: 3px solid var(--mail-blue); padding-left: calc(0.55rem - 3px); }
.ol-ico {
  width: 16px; height: 16px; border-radius: 2px;
  background: #605e5c; display: inline-block; flex: none;
}
.ol-ico.inbox { background: var(--mail-blue); }
.ol-ico.sent { background: #13a10e; }
.ol-ico.archive { background: #c5a059; }
.ol-account {
  margin-top: auto; padding: 0.8rem 0.55rem 0.2rem;
  border-top: 1px solid #2b2b2b; font-size: 0.8rem; color: #c8c6c4;
}
.ol-account strong { display: block; color: #fff; font-size: 0.88rem; }
.ol-role { display: inline-block; margin-top: 0.25rem; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.68rem; }

.ol-list { background: #252423; border-right: 1px solid #2b2b2b; display: flex; flex-direction: column; min-width: 0; }
.ol-list-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.85rem 1rem 0.7rem;
  border-bottom: 1px solid #2b2b2b;
}
.ol-list-head h1 { font-family: "Segoe UI", sans-serif; font-size: 1.15rem; font-weight: 600; margin: 0; }
.ol-list-head span { color: #a19f9d; font-size: 0.8rem; }
.ol-items { list-style: none; margin: 0; padding: 0; overflow: auto; }
.ol-items a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.1rem 0.6rem;
  padding: 0.7rem 1rem 0.75rem 1.15rem;
  color: #d2d0ce;
  border-bottom: 1px solid #2b2b2b;
  position: relative;
}
.ol-items .is-unread a { color: #fff; font-weight: 650; }
.ol-items .is-unread a::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--mail-unread);
}
.ol-items .is-sel a { background: #043862; color: #fff; }
.ol-items a:hover { background: #2d2c2b; color: #fff; }
.ol-from { font-size: 0.92rem; }
.ol-date { color: #a19f9d; font-size: 0.75rem; }
.ol-subj { grid-column: 1 / -1; font-size: 0.88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ol-prev { grid-column: 1 / -1; color: #a19f9d; font-size: 0.8rem; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ol-empty-list, .ol-empty-read {
  display: grid; place-items: center; text-align: center;
  padding: 3rem 1.5rem; color: #a19f9d; min-height: 280px;
}
.ol-empty-read span { display: block; max-width: 36ch; margin-top: 0.4rem; }

.ol-read { background: #1b1a19; display: flex; flex-direction: column; min-width: 0; }
.ol-ribbon {
  display: flex; gap: 0.5rem; align-items: center;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid #2b2b2b;
  background: #252423;
}
.ol-ribbon-title { font-weight: 650; margin-right: auto; }
.ol-ribbon-forms { display: flex; }
.ol-send {
  background: var(--mail-blue); color: #fff; border: 0;
  border-radius: 4px; padding: 0.4rem 0.95rem; font-weight: 650; cursor: pointer;
}
.ol-send:hover { background: #115ea3; color: #fff; }
.ol-ghost {
  background: transparent; color: #f3f2f1;
  border: 1px solid #3b3a39; border-radius: 4px;
  padding: 0.38rem 0.8rem; cursor: pointer; font-weight: 600;
}
.ol-ghost:hover { background: #292827; color: #fff; }
.ol-letter { padding: 1.15rem 1.4rem 0.4rem; overflow: auto; flex: 1; }
.ol-letter h2 { font-family: "Segoe UI", sans-serif; font-size: 1.45rem; font-weight: 600; margin: 0 0 0.45rem; }
.ol-about { color: #c8c6c4; font-size: 0.88rem; }
.ol-msg {
  background: #252423;
  border: 1px solid #3b3a39;
  border-radius: 4px;
  padding: 0.9rem 1rem 1rem;
  margin: 0.85rem 0;
}
.ol-msg.is-me { border-color: rgba(15, 108, 189, 0.55); }
.ol-msg-head { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.ol-addr { color: #a19f9d; font-size: 0.85rem; }
.ol-msg-head time { color: #a19f9d; font-size: 0.8rem; white-space: nowrap; }
.ol-msg-meta { color: #a19f9d; font-size: 0.8rem; margin: 0.2rem 0 0.7rem; }
.ol-body { color: #f3f2f1; line-height: 1.55; white-space: normal; }
.ol-reply, .ol-compose {
  border-top: 1px solid #2b2b2b;
  padding: 0.9rem 1.2rem 1.1rem;
  background: #201f1e;
  display: grid; gap: 0.55rem;
}
.ol-field { display: grid; grid-template-columns: 88px 1fr; gap: 0.5rem; align-items: center; }
.ol-field label { color: #a19f9d; font-size: 0.8rem; }
.ol-static { color: #f3f2f1; font-size: 0.92rem; }
.ol-compose input, .ol-compose select, .ol-compose textarea,
.ol-reply textarea {
  background: #292827; border: 1px solid #3b3a39; border-radius: 4px; color: #fff;
}
.ol-send-row { display: flex; justify-content: flex-start; }

@media (max-width: 1080px) {
  .outlook { grid-template-columns: 72px 280px 1fr; }
  .ol-brand-mini span, .ol-folder-list a, .ol-account, .ol-group { display: none; }
  .ol-folder-list a { display: grid; place-items: center; padding: 0.7rem 0; }
  .ol-folder-list a em { display: none; }
  .ol-new { padding: 0.45rem 0; margin: 0 0 0.6rem; font-size: 1.1rem; }
  .product-grid.gallery { grid-template-columns: repeat(2, 1fr); }
  .product-layout, .how-grid, .footer-grid, .split-2, .cat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; gap: 1.4rem; text-align: center; }
  .hero.hero-luxe .hero-copy { border-left: 0; padding-left: 0; text-align: center; }
  .hero.hero-luxe h1 { margin-inline: auto; }
  .brand img.logo { height: 68px; }
  .header-row { grid-template-columns: auto 1fr auto; }
  .search { display: none; }
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 0.8rem 1.2rem 1.2rem; align-items: flex-start;
  }
  .nav.is-open { display: flex; }
  .outlook { grid-template-columns: 1fr; min-height: auto; }
  .ol-folders { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0.4rem; }
  .ol-brand-mini span, .ol-folder-list a { display: flex; }
  .ol-folder-list { display: flex; flex: 1; }
  .ol-account { display: none; }
  .ol-list { min-height: 280px; }
  .ol-read { min-height: 420px; }
}
@media (max-width: 560px) {
  .product-grid.gallery { grid-template-columns: 1fr; }
  .header-actions .icon-link:not(.mail-link) { display: none; }
}
