:root {
  --ink: #080709;
  --panel: #121014;
  --panel2: #19151a;
  --gold: #d8b86a;
  --gold2: #f6e7b6;
  --paper: #f6f2e9;
  --muted: #b9b1a6;
  --line: rgba(216, 184, 106, 0.24);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a {
  color: inherit;
}
.topbar {
  height: 82px;
  padding: 0 clamp(20px, 4vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 7, 9, 0.92);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font:
    600 0.85rem/1.05 Georgia,
    serif;
  letter-spacing: 0.12em;
}
.brand small {
  display: block;
  margin-top: 7px;
  color: var(--gold);
  font:
    500 0.58rem Arial,
    sans-serif;
  letter-spacing: 0.2em;
}
.gem {
  font-size: 2rem;
  color: var(--gold);
}
nav {
  display: flex;
  gap: 30px;
}
nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
nav a:hover {
  color: var(--gold2);
}
.language {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  padding: 9px 13px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.hero-copy {
  padding: clamp(60px, 9vw, 140px) clamp(24px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(216, 184, 106, 0.09),
    transparent 38%
  );
}
.kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
}
.hero h1,
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.hero h1 {
  font-size: clamp(3rem, 6.6vw, 7rem);
  margin: 0 0 34px;
}
.hero h1 em {
  color: var(--gold2);
  font-weight: 400;
}
.lead {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  color: #d5cec4;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.75rem;
  border: 1px solid var(--line);
}
.button.gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.button.gold:hover {
  background: var(--gold2);
}
.button.clear:hover {
  border-color: var(--gold);
  color: var(--gold2);
}
.note {
  max-width: 590px;
  margin: 22px 0 0;
  color: #8f8880;
  font-size: 0.82rem;
}
.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #09080a;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.08);
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 7, 9, 0.28), transparent 25%),
    linear-gradient(0deg, rgba(8, 7, 9, 0.7), transparent 45%);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(246, 231, 182, 0.34);
  border-radius: 50%;
  z-index: 2;
}
.orbit-one {
  width: 420px;
  height: 420px;
  right: -90px;
  top: 12%;
}
.orbit-two {
  width: 640px;
  height: 640px;
  right: -210px;
  top: 3%;
}
.visual-label {
  position: absolute;
  left: 35px;
  bottom: 35px;
  z-index: 3;
  color: var(--gold2);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
}
.section {
  padding: clamp(76px, 9vw, 135px) clamp(22px, 6vw, 96px);
  border-top: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading .kicker {
  grid-column: 1/-1;
  margin-bottom: -15px;
}
.section h2 {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  margin: 0;
}
.section-heading > p:last-child {
  color: var(--muted);
  max-width: 610px;
  font-size: 1.06rem;
}
.house-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.house-card {
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent);
}
.house-card:last-child {
  border-right: 0;
}
.house-card:hover {
  background: linear-gradient(145deg, rgba(216, 184, 106, 0.09), transparent);
}
.number {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 2rem;
}
.mini {
  margin-top: auto;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.7rem;
}
.house-card h3 {
  font:
    400 2rem/1.1 Georgia,
    serif;
  margin: 8px 0 16px;
}
.house-card p:not(.mini) {
  color: var(--muted);
}
.house-card a {
  margin-top: 20px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold2);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
}
.constellation {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(45px, 8vw, 120px);
  background: var(--panel);
}
.provider-image {
  min-height: 650px;
}
.provider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}
.provider-copy {
  align-self: center;
}
.provider-copy h2 {
  margin: 0 0 26px;
}
.provider-copy > p:not(.kicker) {
  max-width: 700px;
  color: var(--muted);
}
.provider-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.provider-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 2px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.provider-list a:hover {
  color: var(--gold2);
}
.provider-list b {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.provider-list small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}
.provider-list strong {
  color: var(--gold);
  font-size: 1.3rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.steps article {
  background: var(--ink);
  padding: 30px;
  min-height: 285px;
}
.steps span {
  color: var(--gold);
  font:
    400 2rem Georgia,
    serif;
}
.steps h3 {
  font:
    400 1.8rem Georgia,
    serif;
  margin: 60px 0 12px;
}
.steps p {
  color: var(--muted);
  font-size: 0.92rem;
}
.final-cta {
  margin-top: 65px;
  padding: 46px;
  background: var(--panel2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.final-cta h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
}
footer {
  padding: 30px clamp(22px, 6vw, 96px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8f8880;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  border-top: 1px solid var(--line);
}
footer a {
  text-decoration: none;
  color: var(--gold);
}
.seller-model{background:linear-gradient(145deg,#121014,#080709)}
.trade-note{margin-top:38px;padding:30px;border:1px solid var(--line);background:rgba(216,184,106,.06)}
.trade-note h3{margin:0 0 10px;font:400 1.8rem Georgia,serif;color:var(--gold2)}
.trade-note p{margin:0;color:var(--muted);max-width:950px}
.brands{background:var(--panel)}
.brand-cloud{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-left:1px solid var(--line)}
.brand-cloud span{padding:20px;border-right:1px solid var(--line);border-bottom:1px solid var(--line);color:var(--gold2);font-size:.78rem;letter-spacing:.08em;text-transform:uppercase}
@media(max-width:900px){.brand-cloud{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.brand-cloud{grid-template-columns:1fr}}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 500px;
  }
  .section-heading,
  .constellation {
    grid-template-columns: 1fr;
  }
  .house-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .house-card {
    min-height: 340px;
  }
  .house-card:nth-child(2) {
    border-right: 0;
  }
  .house-card:last-child {
    border-top: 1px solid var(--line);
  }
  .provider-image {
    min-height: 480px;
  }
  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .topbar {
    height: 70px;
  }
  .brand {
    font-size: 0.72rem;
  }
  .gem {
    font-size: 1.5rem;
  }
  .hero-copy {
    padding-top: 74px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .section {
    padding: 68px 20px;
  }
  .house-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .house-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .house-card:last-child {
    border-bottom: 0;
  }
  .steps article {
    min-height: 230px;
  }
  .steps h3 {
    margin-top: 35px;
  }
  .final-cta {
    padding: 28px;
  }
  .button {
    width: 100%;
  }
  footer {
    flex-direction: column;
  }
}
