:root {
  --ink: #070707;
  --panel: #151515;
  --gold: #d9ac3d;
  --gold-light: #f4d77a;
  --red: #b51622;
  --red-light: #ef3340;
  --cream: #f6f1e7;
  --muted: #a4a09a;
  --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, summary, a { -webkit-tap-highlight-color: transparent; }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.topline {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: #030303;
  color: #bdb8ad;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topline-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topline-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topline a { transition: color 180ms ease; }
.topline a:hover { color: var(--gold-light); }

.topline-separator {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.25);
}

.site-header {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img { width: 174px; height: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
  color: #d8d3ca;
}

.desktop-nav > a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red-light);
  transition: width 180ms ease;
}

.desktop-nav > a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--gold);
  padding: 13px 19px;
  color: var(--gold-light);
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover { background: var(--gold); color: var(--ink); }

.mobile-nav { display: none; position: relative; }

.mobile-nav summary {
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary span { height: 1px; background: var(--gold-light); }

.mobile-nav nav {
  position: absolute;
  top: 54px;
  right: 0;
  min-width: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #0a0a0a;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.mobile-nav nav a {
  display: block;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-nav nav a:last-child { border-bottom: 0; color: var(--gold-light); }

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 208px 0 0;
  background:
    linear-gradient(90deg, rgba(181,22,34,.08), transparent 42%),
    radial-gradient(circle at 75% 34%, #272011 0, #0b0a08 28%, var(--ink) 62%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero-orb { position: absolute; border-radius: 999px; filter: blur(1px); }

.hero-orb-red {
  left: -240px;
  top: 230px;
  width: 430px;
  height: 430px;
  border: 88px solid rgba(181,22,34,.23);
}

.hero-orb-gold {
  right: -190px;
  top: 150px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(217,172,61,.22);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 68px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
}

.eyebrow span { width: 34px; height: 2px; background: var(--red-light); }

.hero h1,
.section-heading h2,
.king-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(58px, 6.7vw, 104px);
  line-height: .91;
}

.hero h1 strong {
  display: block;
  margin-top: 15px;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-lede {
  max-width: 630px;
  margin: 30px 0 0;
  color: #c0bbb3;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions, .contact-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: var(--red-light); }
.button-ghost { border-color: rgba(255,255,255,.24); color: #eee9df; }
.button-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-visual { position: relative; min-width: 0; }

.visual-frame {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217,172,61,.38);
  background:
    linear-gradient(145deg, rgba(217,172,61,.13), rgba(0,0,0,.2) 45%),
    #0c0b09;
  box-shadow: 0 35px 100px rgba(0,0,0,.52);
  transform: perspective(1000px) rotateY(-3deg);
}

.visual-frame::before, .visual-frame::after {
  position: absolute;
  content: "";
  width: 72px;
  height: 72px;
  pointer-events: none;
}

.visual-frame::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--red-light);
  border-left: 3px solid var(--red-light);
}

.visual-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.visual-frame > img {
  width: 112%;
  max-width: none;
  margin-left: -10%;
  filter: saturate(.92) contrast(1.04) drop-shadow(0 24px 25px rgba(0,0,0,.45));
}

.frame-label {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 2;
  color: #d0cbc2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
}

.visual-spec {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visual-spec span { color: var(--muted); font-size: 9px; letter-spacing: .2em; }
.visual-spec strong { color: var(--gold-light); font-family: Georgia, serif; font-size: 27px; font-weight: 400; }

.gold-line {
  position: absolute;
  z-index: -1;
  right: -60px;
  bottom: -28px;
  width: 78%;
  height: 70%;
  border-right: 1px solid rgba(217,172,61,.35);
  border-bottom: 1px solid rgba(217,172,61,.35);
}

.stats-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: rgba(8,8,8,.86);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.stats-strip div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.stats-strip strong { color: var(--gold-light); font-family: Georgia, serif; font-size: 30px; font-weight: 400; }

.stats-strip span {
  margin-top: 6px;
  color: #87837d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section { padding: 128px 0; }
.company { background: var(--cream); color: #171612; }

.company-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}

.section-heading h2, .king-copy h2, .contact-copy h2 {
  font-size: clamp(45px, 5vw, 72px);
  line-height: 1.02;
}

.company .eyebrow { color: #76601d; }
.company-copy { padding-top: 6px; }

.company-copy > p {
  margin: 0;
  color: #655f55;
  font-size: 16px;
  line-height: 1.82;
}

.company-copy .lead {
  margin-bottom: 22px;
  color: #25221d;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.55;
}

.company-pillars {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #cfc6b5;
}

.company-pillars > div { padding: 28px 30px 0 0; }

.company-pillars > div + div {
  padding-left: 30px;
  border-left: 1px solid #cfc6b5;
}

.company-pillars span { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .15em; }

.company-pillars h3 {
  margin: 13px 0 10px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.company-pillars p { margin: 0; color: #6d675e; font-size: 14px; line-height: 1.7; }
.products { background: #0b0b0b; }

.products-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 52px;
}

.products-heading > p {
  max-width: 420px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  transition: border-color 220ms ease, transform 220ms ease;
}

.product-card:hover { border-color: rgba(217,172,61,.55); transform: translateY(-5px); }

.product-image {
  position: relative;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(217,172,61,.1), transparent 58%),
    #111;
}

.product-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  content: "";
  background: linear-gradient(transparent, #111);
}

.product-image img {
  width: 86%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(0,0,0,.48));
  transition: transform 350ms ease;
}

.product-card:hover .product-image img { transform: scale(1.035); }

.product-number {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  color: rgba(255,255,255,.35);
  font-family: Georgia, serif;
  font-size: 17px;
}

.product-body { padding: 30px 32px 32px; }

.product-type {
  margin: 0 0 10px;
  color: var(--red-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
}

.product-body h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.product-description {
  min-height: 50px;
  margin: 14px 0 24px;
  color: #9e9a92;
  font-size: 14px;
  line-height: 1.7;
}

.mini-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-specs div { padding: 17px 12px 17px 0; }
.mini-specs div + div { padding-left: 12px; border-left: 1px solid var(--line); }
.mini-specs span, .mini-specs strong { display: block; }

.mini-specs span {
  min-height: 22px;
  color: #68655f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mini-specs strong { margin-top: 6px; color: #e3dfd6; font-size: 12px; }

.feature-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  color: #d4cfc6;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  list-style: none;
  text-transform: uppercase;
}

.feature-list summary::-webkit-details-marker { display: none; }
.feature-list summary span { color: var(--gold-light); font-size: 20px; font-weight: 400; transition: transform 180ms ease; }
.feature-list[open] summary span { transform: rotate(45deg); }

.feature-list ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
}

.feature-list li {
  padding: 10px;
  border-left: 2px solid var(--red);
  background: rgba(255,255,255,.025);
  color: #8f8b84;
  font-size: 11px;
  line-height: 1.45;
}

.king {
  position: relative;
  overflow: hidden;
  padding: 132px 0;
  background: var(--red);
}

.king::before {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 110px solid rgba(0,0,0,.09);
  border-radius: 999px;
  content: "";
}

.king-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 92px;
}

.king-image {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  background: #0b0b0b;
  box-shadow: 24px 24px 0 rgba(0,0,0,.14);
}

.king-image img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  padding: 28px;
  object-fit: contain;
  opacity: .96;
}

.king-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.78));
}

.king-badge {
  position: absolute;
  z-index: 2;
  left: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
}

.king-badge span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.king-badge strong { margin-top: 6px; font-family: Georgia, serif; font-size: 33px; font-weight: 400; }
.king-copy .eyebrow { color: #ffe598; }
.king-copy .eyebrow span { background: #16130e; }

.king-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.78;
}

.king-specs {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.king-specs div { padding: 20px 16px 20px 0; }
.king-specs div + div { padding-left: 16px; border-left: 1px solid rgba(255,255,255,.25); }
.king-specs strong, .king-specs span { display: block; }
.king-specs strong { color: #fff0bd; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }

.king-specs span {
  margin-top: 5px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.king-features {
  margin: 30px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 24px;
  list-style: none;
}

.king-features li {
  position: relative;
  padding-left: 19px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.5;
}

.king-features li::before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  content: "";
  background: #f4d77a;
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.text-link span { color: var(--gold-light); }

.contact {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(217,172,61,.1), transparent 34%),
    #080808;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  padding: 74px;
  border: 1px solid rgba(217,172,61,.3);
  background: #10100f;
  box-shadow: inset 5px 0 0 var(--red);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.contact-details { margin: 0; display: grid; gap: 27px; font-style: normal; }
.contact-details div { padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.contact-details div:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-details span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .18em; }

.contact-details p, .contact-details a {
  display: block;
  margin: 10px 0 0;
  color: #c6c1b7;
  font-size: 14px;
  line-height: 1.65;
}

.contact-details a:hover { color: #fff; }

footer { border-top: 1px solid var(--line); background: #030303; }

.footer-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img { width: 116px; }
.footer-inner p { color: #68655f; font-size: 11px; }

.footer-inner > div {
  display: flex;
  gap: 24px;
  color: #8e8a83;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-inner > div a:hover { color: var(--gold-light); }

@media (max-width: 1050px) {
  .desktop-nav { gap: 22px; }
  .hero-layout { gap: 36px; }
  .visual-frame { min-height: 380px; }
  .company-layout, .king-layout { gap: 55px; }
  .mini-specs { grid-template-columns: repeat(2, 1fr); }
  .mini-specs div:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .mini-specs div:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 680px); }
  .topline-inner > span, .topline-contact a:first-child, .topline-separator { display: none; }
  .topline-inner { justify-content: flex-end; }
  .nav-wrap { min-height: 82px; }
  .brand img { width: 145px; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero { min-height: auto; padding-top: 170px; }
  .hero-layout { grid-template-columns: 1fr; gap: 62px; }
  .hero-copy { max-width: 640px; }
  .hero h1 { font-size: clamp(55px, 13vw, 86px); }
  .hero-visual { width: 92%; margin-left: auto; }

  .stats-strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100% - 32px, 680px);
    margin-top: 70px;
    grid-template-columns: repeat(2, 1fr);
    transform: none;
  }

  .stats-strip div { min-height: 100px; }
  .stats-strip div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .section { padding: 96px 0; }
  .company-layout, .king-layout, .contact-card { grid-template-columns: 1fr; }
  .company-layout { gap: 50px; }
  .products-heading { align-items: flex-start; flex-direction: column; gap: 28px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-description { min-height: auto; }
  .king { padding: 96px 0; }
  .king-layout { gap: 70px; }
  .king-copy { max-width: 620px; }
  .contact-card { gap: 60px; padding: 58px 46px; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 28px); }
  .topline { font-size: 10px; }
  .site-header { top: 36px; }
  .nav-wrap { min-height: 76px; }
  .brand img { width: 128px; }
  .hero { padding-top: 155px; }
  .hero h1 { font-size: clamp(50px, 16vw, 70px); }
  .hero-lede { font-size: 15px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { width: 100%; }
  .visual-frame { min-height: 285px; transform: none; }
  .visual-frame > img { width: 118%; margin-left: -15%; }
  .frame-label { top: 17px; right: 17px; }
  .visual-spec { left: 17px; bottom: 16px; }
  .stats-strip { width: calc(100% - 28px); margin-top: 55px; }
  .stats-strip div { padding: 0 18px; }
  .stats-strip strong { font-size: 25px; }
  .section, .king { padding: 78px 0; }
  .section-heading h2, .king-copy h2, .contact-copy h2 { font-size: 43px; }
  .company-copy .lead { font-size: 21px; }
  .company-pillars { grid-template-columns: 1fr; }
  .company-pillars > div { padding: 26px 0; }
  .company-pillars > div + div { padding-left: 0; border-top: 1px solid #cfc6b5; border-left: 0; }
  .product-image { height: 250px; }
  .product-body { padding: 26px 22px; }
  .product-body h3 { font-size: 26px; }
  .feature-list ul, .king-features { grid-template-columns: 1fr; }
  .king-image, .king-image img { min-height: 410px; }
  .king-specs strong { font-size: 23px; }
  .king-specs div { padding-right: 9px; }
  .king-specs div + div { padding-left: 9px; }
  .contact-card { width: calc(100% - 28px); padding: 46px 25px; box-shadow: inset 3px 0 0 var(--red); }
  .footer-inner { padding: 34px 0; flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
