
:root {
  --bg: #070707;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f7f4ee;
  --muted: #b8b1a3;
  --line: rgba(255,255,255,0.08);
  --accent: #d1a85c;
  --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #0a0a0a 0%, #070707 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display:block; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
  background: rgba(7,7,7,0.82); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand-wrap { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(209,168,92,0.35);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  object-fit: cover;
  overflow: hidden;
}
.brand { font-size: 1.18rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.nav-links { display: flex; gap: 24px; color: var(--muted); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.08em; }
.nav-links a:hover { color: var(--text); }
.hero, .page-hero { padding: 34px 0 72px; border-bottom: 1px solid var(--line); }
.page-hero { padding: 60px 0 42px; }
.hero-card {
  position: relative; min-height: 72vh; border-radius: 34px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(0,0,0,0.45); background: #111;
}
.hero-card img { width: 100%; height: 72vh; object-fit: cover; filter: brightness(0.58); }
.hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.45) 52%, rgba(8,8,8,0.18) 100%);
  display: flex; align-items: flex-end;
}
.hero-content { max-width: 760px; padding: 56px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.76rem; margin-bottom: 16px; }
.hero h1, .page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: 0.95; margin: 0 0 18px; text-transform: uppercase; letter-spacing: 0.03em; }
.hero p, .page-hero p { color: #dfd7c8; max-width: 680px; font-size: 1.06rem; margin: 0 0 28px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border-radius: 999px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; font-size: 0.84rem; border: 1px solid rgba(209,168,92,0.8);
}
.btn.primary { background: var(--accent); color: #111; }
.btn.secondary { color: var(--text); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.03); }
.section { padding: 82px 0; border-bottom: 1px solid var(--line); }
.section-title {
  display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px;
}
.section-title h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; letter-spacing: 0.06em; }
.section-title p { margin: 0; color: var(--muted); max-width: 600px; }
.product-overview, .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.product-card, .panel {
  background: linear-gradient(180deg, #141414 0%, #101010 100%); border: 1px solid var(--line); border-radius: 30px; overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.product-card img { width: 100%; height: 320px; object-fit: cover; }
.product-card .content, .panel .content { padding: 24px; }
.product-card h3, .panel h3 { margin: 0 0 8px; font-size: 1.5rem; text-transform: uppercase; }
.product-card p, .panel p, .note { color: var(--muted); }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.tag {
  border: 1px solid rgba(255,255,255,0.12); color: #ddd5c8; padding: 7px 12px; border-radius: 999px;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(255,255,255,0.02);
}
.price { font-size: 1.35rem; font-weight: 700; color: var(--accent); margin: 0 0 16px; }
.product-layout { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 34px; align-items: start; }
.gallery { display: grid; gap: 16px; }
.gallery img {
  width: 100%; border-radius: 24px; border: 1px solid var(--line); box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}
.before-after { position: relative; overflow: hidden; border-radius: 24px; }
.ba-labels { position: absolute; top: 16px; left: 16px; right: 16px; display: flex; justify-content: space-between; }
.ba-label {
  background: rgba(10,10,10,0.84); color: #fff; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px;
  padding: 8px 14px; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.detail-panel {
  background: linear-gradient(180deg, #151515 0%, #101010 100%); border: 1px solid var(--line); border-radius: 30px; padding: 30px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.detail-panel h3 { margin: 0 0 10px; font-size: 2rem; text-transform: uppercase; }
.sub { color: var(--accent); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem; margin-bottom: 14px; }
.spec-box { background: #141414; border: 1px solid var(--line); border-radius: 22px; padding: 20px; margin: 22px 0; }
.spec-box h4 { margin: 0 0 14px; font-size: 0.96rem; text-transform: uppercase; letter-spacing: 0.1em; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.spec {
  padding: 12px; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; background: #0f0f0f;
}
.spec span {
  display: block; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 6px;
}
.spec strong { font-size: 1rem; color: var(--text); }
.cta { background: linear-gradient(180deg, #151515 0%, #0d0d0d 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-box { padding: 72px 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta h2 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3.1rem); text-transform: uppercase; letter-spacing: 0.06em; }
.cta p { margin: 0; color: var(--muted); max-width: 680px; }
footer { padding: 30px 0 44px; color: var(--muted); font-size: 0.95rem; }
@media (max-width: 980px) {
  .product-layout, .cta-box, .product-overview, .grid-2, .section-title { grid-template-columns: 1fr; display: grid; }
  .hero-card, .hero-card img { min-height: auto; height: auto; }
  .hero-overlay { position: static; background: none; }
  .hero-content { padding: 28px; }
}
@media (max-width: 760px) {
  .nav { flex-direction: column; gap: 14px; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .spec-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .hero h1, .page-hero h1 { font-size: 2.8rem; }
  .product-card img { height: auto; }
}


.cart-button {
  margin-left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(209,168,92,0.8);
  color: var(--text);
  background: rgba(255,255,255,0.03);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-right {
  display: flex;
  align-items: center;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.purchase-box {
  background: linear-gradient(180deg, #141414 0%, #101010 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.purchase-box h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  text-transform: uppercase;
}
.purchase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.purchase-note {
  color: var(--muted);
  font-size: 0.96rem;
  margin-top: 14px;
}
@media (max-width: 760px) {
  .nav-right { flex-direction: column; gap: 12px; }
  .cart-button { margin-left: 0; }
  .shop-grid { grid-template-columns: 1fr; }
}


.hero-card--premium {
  min-height: 84vh;
}
.hero-card--premium img {
  height: 84vh;
  object-position: center;
}
.hero-overlay--premium {
  background:
    linear-gradient(90deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.52) 48%, rgba(8,8,8,0.18) 100%),
    linear-gradient(180deg, rgba(209,168,92,0.08) 0%, rgba(0,0,0,0) 35%);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #efe5d2;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 26px;
  max-width: 720px;
}
.hero-stat {
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 16px;
  backdrop-filter: blur(8px);
}
.hero-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.hero-stat strong {
  font-size: 1rem;
  color: var(--text);
}
.feature-band {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.feature-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-pill {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #141414 0%, #101010 100%);
}
.feature-pill span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.feature-pill strong {
  font-size: 1rem;
}
.split-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.showcase-card {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(8,8,8,0.86) 100%);
}
.showcase-copy h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  text-transform: uppercase;
}
.showcase-copy p {
  margin: 0 0 16px;
  color: #ddd5c8;
}
.dual-stack {
  display: grid;
  gap: 22px;
}
.mini-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #141414 0%, #101010 100%);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.mini-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.mini-card .content {
  padding: 22px;
}
.mini-card h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 1.3rem;
}
.quote-strip {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}
.quote-strip blockquote {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.3;
  color: #f3eadb;
  max-width: 900px;
}
.quote-strip p {
  color: var(--muted);
  margin-top: 14px;
}
@media (max-width: 980px) {
  .hero-stats,
  .feature-band-grid,
  .split-showcase {
    grid-template-columns: 1fr;
  }
  .hero-card--premium,
  .hero-card--premium img {
    min-height: auto;
    height: auto;
  }
}


.models-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.models-hero-main,
.models-hero-side {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.models-hero-main { min-height: 520px; }
.models-hero-side { min-height: 248px; }
.models-hero-main img,
.models-hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.models-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(8,8,8,0.88) 100%);
}
.models-overlay h2,
.models-overlay h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
}
.models-overlay p {
  margin: 0;
  color: #ddd5c8;
}
.models-side-stack {
  display: grid;
  gap: 24px;
}
.model-detail-grid {
  display: grid;
  gap: 28px;
}
.model-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}
.model-card {
  background: linear-gradient(180deg, #141414 0%, #101010 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.model-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.model-card .content {
  padding: 24px;
}
.model-card h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 1.7rem;
}
.model-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.model-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}
.model-gallery img:first-child {
  grid-column: 1 / -1;
  height: 320px;
}
.spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}
.spec-chip {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ddd5c8;
}
.models-cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.cta-panel {
  background: linear-gradient(180deg, #141414 0%, #101010 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.cta-panel h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.4rem;
}
@media (max-width: 980px) {
  .models-hero-grid,
  .model-row,
  .models-cta-band {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .model-gallery {
    grid-template-columns: 1fr;
  }
  .model-gallery img,
  .model-gallery img:first-child,
  .model-card img {
    height: auto;
  }
}


.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.footer-title {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.insta-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #141414 0%, #101010 100%);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.insta-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.insta-card .content {
  padding: 18px;
}
.gallery-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-slider img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}
@media (max-width: 980px) {
  .footer-grid,
  .insta-grid,
  .gallery-slider {
    grid-template-columns: 1fr;
  }
}
