:root {
  color-scheme: light;
  --rr-dark: #241b16;
  --rr-darker: #150d09;
  --rr-ink: #1a1410;
  --rr-cream: #f4ebdd;
  --rr-cream-light: #fff8ed;
  --rr-gold: #c59a4a;
  --rr-rust: #a94724;
  --rr-line: rgba(244, 235, 221, 0.18);
  --rr-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --rr-font-ui: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--rr-cream);
  font-family: var(--rr-font-ui);
  background:
    linear-gradient(180deg, rgba(21, 13, 9, 0.12), rgba(21, 13, 9, 0.78)),
    url("/assets/brand/rag-rust-hero.png") center / cover fixed no-repeat,
    var(--rr-darker);
}

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

img {
  display: block;
  max-width: 100%;
}

.holding-page {
  display: grid;
  min-height: 100vh;
  padding: clamp(22px, 5vw, 64px);
  place-items: center;
}

.holding-panel {
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  padding: clamp(24px, 5vw, 58px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(36, 27, 22, 0.96), rgba(24, 16, 13, 0.93)),
    radial-gradient(circle at 50% 0%, rgba(197, 154, 74, 0.22), transparent 24rem);
  border: 1px solid var(--rr-line);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(11, 7, 5, 0.45);
}

.brand-mark {
  width: min(320px, 72vw);
  margin-bottom: clamp(18px, 3vw, 30px);
}

.brand-mark img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(9, 5, 3, 0.28);
}

.holding-copy {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--rr-gold);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--rr-cream-light);
  font-family: var(--rr-font-display);
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.holding-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #f6e8d0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.auction-illustration {
  width: min(760px, 100%);
  margin: clamp(20px, 3vw, 34px) auto 0;
}

.auction-illustration img {
  width: 100%;
  height: auto;
  aspect-ratio: 1661 / 947;
  object-fit: cover;
  border: 1px solid rgba(244, 235, 221, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(9, 5, 3, 0.34);
}

.holding-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(18px, 3vw, 28px);
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.primary-action {
  color: #fff;
  background: var(--rr-rust);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(169, 71, 36, 0.28);
}

.secondary-action {
  color: var(--rr-cream-light);
  background: rgba(255, 248, 237, 0.08);
  border: 1px solid rgba(244, 235, 221, 0.28);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

.primary-action:hover {
  color: var(--rr-dark);
  background: var(--rr-gold);
}

.secondary-action:hover {
  border-color: rgba(197, 154, 74, 0.76);
  background: rgba(197, 154, 74, 0.16);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 235, 221, 0.34);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.92);
  box-shadow: 0 10px 22px rgba(9, 5, 3, 0.2);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.social-row img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.social-row a:hover {
  transform: translateY(-1px);
  border-color: rgba(197, 154, 74, 0.8);
  background: #fff8ed;
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
  }

  .holding-page {
    padding: 14px;
  }

  .holding-panel {
    min-height: calc(100vh - 28px);
    align-content: center;
    padding: 22px 18px;
  }

  .brand-mark {
    width: min(250px, 78vw);
  }

  h1 {
    max-width: 10ch;
  }

  .auction-illustration {
    margin-top: 12px;
  }

  .holding-actions {
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    width: min(100%, 310px);
  }
}
