﻿:root {
  --black: #050505;
  --black-soft: #0b0b0d;
  --panel: #111114;
  --panel-2: #17171b;
  --gold: #d4af37;
  --gold-light: #ffe08a;
  --gold-dark: #8b6518;
  --white: #f8f3e7;
  --muted: #c9c0aa;
  --line: rgba(212, 175, 55, 0.25);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.15), transparent 34rem),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 28rem),
    var(--black);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--gold-light);
  background: linear-gradient(145deg, #080808, #151515);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.18);
}

.brand-mark .crown {
  position: absolute;
  top: -16px;
  font-size: 19px;
  color: var(--gold-light);
}

.brand-mark .letters {
  font-family: Georgia, serif;
  font-weight: 800;
  letter-spacing: -2px;
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.menu-button {
  display: none;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 11px;
  font-size: 22px;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.hero-bg-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  filter: blur(80px);
  right: 8%;
  top: 12%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 50px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 13px;
  margin: 0 0 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.hero-text {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.button.primary {
  color: #080808;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.button.secondary {
  color: var(--gold-light);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button:hover {
  transform: translateY(-2px);
}

.button.full {
  width: 100%;
  font-size: 16px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.trust-row div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong {
  display: block;
  color: var(--gold-light);
}

.trust-row span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.hero-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
}

.crest {
  display: grid;
  place-items: center;
  margin: 6px auto 26px;
}

.crest-crown {
  color: var(--gold-light);
  font-size: 64px;
  line-height: 1;
  margin-bottom: -10px;
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.4);
}

.crest-ring {
  width: 270px;
  height: 270px;
  border: 8px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle, #111 0%, #020202 75%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 224, 138, 0.45),
    0 0 48px rgba(212, 175, 55, 0.14);
}

.crest-ring span {
  font-family: Georgia, serif;
  font-size: 94px;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: -8px;
  text-shadow: 0 8px 0 rgba(139, 101, 24, 0.4);
}

.roof {
  position: absolute;
  bottom: 58px;
  width: 116px;
  height: 72px;
  border-left: 8px solid var(--gold);
  border-top: 8px solid var(--gold);
  transform: rotate(45deg);
}

.window {
  position: absolute;
  bottom: 48px;
  display: grid;
  grid-template-columns: repeat(2, 14px);
  gap: 5px;
}

.window i {
  width: 14px;
  height: 14px;
  background: var(--gold-light);
}

.card-content {
  text-align: center;
}

.card-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.notice {
  padding: 0 0 40px;
}

.notice-box {
  border: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.08);
  border-radius: 20px;
  color: var(--muted);
  padding: 18px 22px;
  line-height: 1.6;
}

.notice-box strong {
  color: var(--gold-light);
}

.section {
  padding: 92px 0;
}

.two-column,
.promise-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.section-copy p,
.promise p,
.contact-section p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.dark-panel {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.02)),
    #080809;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.steps article,
.info-card,
.promise-list div,
.seller-form,
.contact-note {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: 24px;
  padding: 24px;
}

.steps span {
  color: var(--gold-light);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.steps p,
.info-card p {
  color: var(--muted);
  line-height: 1.65;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.info-card h3 {
  color: var(--gold-light);
}

.promise {
  background:
    radial-gradient(circle at center left, rgba(212, 175, 55, 0.13), transparent 28rem),
    var(--panel);
}

.promise-list {
  display: grid;
  gap: 14px;
}

.promise-list strong {
  display: block;
  color: var(--gold-light);
  font-size: 18px;
  margin-bottom: 4px;
}

.promise-list span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--gold-light);
  font-weight: 800;
  font-size: 18px;
}

details p {
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 0;
}

.contact-section {
  background: #080809;
  border-top: 1px solid var(--line);
}

.contact-note {
  margin-top: 28px;
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-note strong {
  color: var(--gold-light);
  margin-bottom: 5px;
}

.contact-note span {
  color: var(--muted);
}

.seller-form {
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--gold-light);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
  color: var(--muted);
  background: var(--black);
}

.footer strong {
  color: var(--gold-light);
  font-size: 20px;
}

.footer p,
.footer small {
  line-height: 1.7;
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 5, 5, 0.97);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero-grid,
  .two-column,
  .promise-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .cards {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .crest-ring {
    width: 230px;
    height: 230px;
  }

  .crest-ring span {
    font-size: 76px;
  }
}

.image-mark {
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--gold);
  background: #000;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 26px;
}

.hero-logo-image {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.18));
}
