:root {
  --black: #0f0f0f;
  --black-soft: #181714;
  --gold: #c69118;
  --gold-light: #e2bb58;
  --cream: #f7f1e5;
  --muted: #cfc8ba;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--black); }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 8%, rgba(198,145,24,.13), transparent 30rem),
    radial-gradient(circle at 88% 92%, rgba(198,145,24,.08), transparent 27rem),
    var(--black);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
}

.welcome-card {
  position: relative;
  width: min(1120px, 100%);
  min-height: min(760px, calc(100vh - 60px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 255px;
  align-content: center;
  gap: 42px 65px;
  overflow: hidden;
  padding: clamp(32px, 6vw, 80px);
  border: 1px solid rgba(198,145,24,.55);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(29,28,24,.96), rgba(12,12,12,.98));
  box-shadow: 0 30px 90px rgba(0,0,0,.45), inset 0 0 70px rgba(198,145,24,.035);
}

.welcome-card::before,
.welcome-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.welcome-card::before {
  inset: 18px auto auto 18px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  border-radius: 18px 0 0;
}

.welcome-card::after {
  inset: auto 18px 18px auto;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  border-radius: 0 0 18px;
}

.logo {
  grid-column: 1 / -1;
  width: min(700px, 92%);
  max-height: 255px;
  margin: 0 auto clamp(6px, 2vw, 20px);
  display: block;
  object-fit: contain;
}

.content { align-self: center; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin: 0;
  color: var(--cream);
  font-family: Optima, "Palatino Linotype", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.intro {
  max-width: 630px;
  margin: 22px 0 27px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.contact-list { display: grid; gap: 10px; }

.contact-row {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--cream);
  font-size: clamp(.95rem, 1.5vw, 1.08rem);
  letter-spacing: .025em;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.contact-row:hover,
.contact-row:focus-visible { color: var(--gold-light); transform: translateX(4px); }

.icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border: 1px solid rgba(198,145,24,.6);
  border-radius: 50%;
}

.icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: #aaa397;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(198,145,24,.8);
}

.qr-box {
  align-self: center;
  display: grid;
  justify-items: center;
  gap: 15px;
  padding: 25px 18px 18px;
  border: 1px solid rgba(198,145,24,.28);
  border-radius: 22px;
  background: #111;
}

.qr-box img { width: min(210px, 100%); display: block; }
.qr-box span { color: var(--gold-light); font-size: .72rem; letter-spacing: .08em; }

.sparkles {
  position: absolute;
  color: var(--gold);
  opacity: .55;
  font-size: 24px;
}

.sparkle-left { left: 6%; bottom: 13%; }
.sparkle-right { right: 7%; top: 12%; }

@media (max-width: 800px) {
  .welcome-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 38px;
    text-align: center;
  }
  .content { display: grid; justify-items: center; }
  .contact-row { margin-inline: auto; }
  .qr-box { width: min(275px, 100%); margin-inline: auto; }
  .logo { width: 100%; }
}

@media (max-width: 480px) {
  .page-shell { padding: 10px; }
  .welcome-card { padding: 40px 22px; border-radius: 18px; }
  .welcome-card::before, .welcome-card::after { display: none; }
  h1 br { display: none; }
  .contact-row { font-size: .88rem; }
  .icon { width: 30px; height: 30px; flex-basis: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
