:root {
  --bg: #0e0d0c;
  --fg: #ece8e1;
  --elev: #161412;
  --surface: #1c1a17;
  --muted: #9a9286;
  --border: #2a2723;
  --accent: #c4a574;
  --accent-fg: #0e0d0c;
  --display: Manrope, ui-sans-serif, system-ui, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--sans); }
body { min-height: 100dvh; display: flex; flex-direction: column; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: var(--display); letter-spacing: -0.02em; font-weight: 600; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid var(--border); background: rgba(14,13,12,.95); backdrop-filter: blur(8px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 64px; }
.logo img { height: 36px; width: auto; filter: invert(1); }
nav { display: flex; align-items: center; gap: 28px; }
nav a, nav button { font-size: 11.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); background: none; border: 0; cursor: pointer; appearance: none; padding: 0; }
nav a:hover, nav button:hover { color: var(--fg); }
.drop { position: relative; }
.drop-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); margin-top: 8px; width: 210px; background: var(--elev); border: 1px solid var(--border); border-radius: 12px; padding: 8px 0; }
.drop.open .drop-menu { display: block; }
.drop-menu a { display: block; padding: 10px 16px; text-transform: none; letter-spacing: .04em; font-size: 14px; }
.lang { display: flex; gap: 8px; font-size: 12px; letter-spacing: .18em; }
.lang button { appearance: none; background: transparent; border: 0; padding: 0; color: var(--muted); }
.lang button.active { color: var(--fg); }
.burger { display: none; background: none; border: 0; color: var(--fg); font-size: 22px; }
.mobile { display: none; flex-direction: column; border-top: 1px solid var(--border); padding: 8px 16px 16px; }
.mobile a { padding: 12px 0; color: var(--muted); }
@media (max-width: 900px) {
  nav.desk { display: none; }
  .burger { display: block; }
  .mobile.open { display: flex; }
}
.hero { position: relative; min-height: 72vh; display: grid; place-items: center; overflow: hidden; text-align: center; }
@media (min-width: 900px) { .hero { min-height: calc(100svh - 64px); } }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), rgba(14,13,12,.4), rgba(14,13,12,.2)); }
.hero .copy { position: relative; width: min(720px, calc(100% - 40px)); padding: 80px 0; }
.kicker { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); }
.hero h1 { font-size: clamp(32px, 5vw, 48px); margin: 20px 0 0; }
.hero p { color: rgba(236,232,225,.85); line-height: 1.6; margin-top: 20px; }
.tiles { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
.tile { position: relative; min-height: 280px; overflow: hidden; }
@media (min-width: 900px) { .tile { min-height: 520px; } }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.tile:hover img { transform: scale(1.04); }
.tile .shade { position: absolute; inset: 0; background: rgba(14,13,12,.45); }
.tile .txt { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.tile h2 { margin: 4px 0 0; font-size: 22px; letter-spacing: .14em; text-transform: uppercase; }
@media (max-width: 700px) { .tiles { grid-template-columns: 1fr; } }
.band { background: var(--elev); text-align: center; padding: 56px 20px; color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0; width: 100%; }
.gallery img { height: 220px; width: 100%; object-fit: cover; }
@media (min-width: 900px) { .gallery img { height: 400px; } }
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery img { height: 160px; } }
.page-hero { position: relative; height: 42vh; min-height: 240px; overflow: hidden; display: grid; place-items: center; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .shade { position: absolute; inset: 0; background: rgba(14,13,12,.5); }
.page-hero h1 { position: relative; font-size: clamp(32px, 5vw, 48px); }
.intro { text-align: center; color: var(--muted); max-width: 640px; margin: 48px auto 0; padding: 0 16px; line-height: 1.6; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 40px 0 24px; }
@media (max-width: 900px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--elev); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin: 0; font-size: 18px; }
.card .tag { color: var(--muted); font-size: 14px; margin-top: 8px; }
.price { font-family: var(--display); color: var(--accent); font-size: 20px; margin-top: 16px; }
.code { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 20px; border-radius: 8px; border: 0; cursor: pointer; font-weight: 500; }
.btn-brass { background: var(--accent); color: var(--accent-fg); width: 100%; margin-top: 20px; }
.form { background: var(--elev); border: 1px solid var(--border); border-radius: 16px; padding: 28px; max-width: 680px; margin: 56px auto 72px; }
.form h2 { margin: 0; font-size: 22px; }
.form .hint { color: var(--muted); font-size: 14px; line-height: 1.5; margin-top: 8px; }
.prod-chip { margin-top: 20px; border: 1px solid var(--border); background: var(--surface); border-radius: 8px; padding: 10px 12px; font-size: 14px; }
.fields { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; margin-top: 20px; }
.field { display: grid; gap: 8px; }
.field span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.span2 { grid-column: 1 / -1; }
@media (max-width: 560px) { .fields { grid-template-columns: 1fr; } .span2 { grid-column: auto; } }
input, textarea, select { height: 44px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--fg); padding: 0 12px; font: inherit; width: 100%; }
textarea { height: auto; padding: 12px; min-height: 112px; }
.hp { position: absolute; left: -9999px; }
.footer { margin-top: auto; border-top: 1px solid var(--border); background: var(--elev); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 56px 0; }
.footer h6 { margin: 0; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.footer .rule { display: block; width: 40px; height: 1px; background: var(--border); margin: 8px 0 16px; }
.footer p, .footer a { color: var(--muted); font-size: 14px; line-height: 1.6; }
.footer a:hover { color: var(--fg); }
.footer-bottom { border-top: 1px solid var(--border); text-align: center; padding: 20px; font-size: 12px; color: var(--muted); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.article { width: min(720px, calc(100% - 40px)); margin: 64px auto; }
.article h1 { font-size: 36px; }
.article p, .article li { color: var(--muted); line-height: 1.65; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0 72px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
.thumbs button { border: 1px solid var(--border); padding: 0; background: none; border-radius: 8px; overflow: hidden; cursor: pointer; }
.thumbs button.on { border-color: var(--accent); }
.thumbs img { aspect-ratio: 1; object-fit: cover; }
.info { background: var(--elev); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.info .price { font-size: 28px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 56px 0 24px; }
@media (max-width: 700px) { .two { grid-template-columns: 1fr; } }
.panel { background: var(--elev); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.panel.hi { border-color: rgba(196,165,116,.4); }
