/* ============================================================
   Radloff Suppliers — Under Construction
   Palette drawn from the brand logo:
   deep emerald greens + polished gold
   ============================================================ */

:root {
  --emerald-950: #04150f;
  --emerald-900: #07241a;
  --emerald-800: #0b3324;
  --emerald-700: #10452f;
  --gold-100: #f9ecbe;
  --gold-200: #f7e08b;
  --gold-300: #e9c95e;
  --gold-400: #d4af37;
  --gold-500: #b8902c;
  --gold-600: #8c6914;
  --ink-soft: #cfe0d4;
  --ink-faint: #8aa896;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: "Jost", "Segoe UI", sans-serif;
  font-weight: 300;
  color: var(--ink-soft);
  background:
    radial-gradient(1200px 800px at 50% -10%, var(--emerald-700) 0%, transparent 60%),
    radial-gradient(900px 600px at 85% 110%, var(--emerald-800) 0%, transparent 55%),
    linear-gradient(180deg, var(--emerald-900) 0%, var(--emerald-950) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ---------- background layers ---------- */

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(560px 560px at 50% 26%,
    rgba(212, 175, 55, 0.10) 0%,
    rgba(212, 175, 55, 0.03) 45%,
    transparent 70%);
  animation: glowPulse 7s ease-in-out infinite;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}

.bg-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 100% at 50% 50%, transparent 55%, rgba(2, 10, 7, 0.55) 100%);
  z-index: 0;
}

/* ---------- floating gold particles ---------- */

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particles span {
  position: absolute;
  bottom: -12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-100), var(--gold-400) 60%, var(--gold-600));
  box-shadow: 0 0 8px 1px rgba(212, 175, 55, 0.55);
  opacity: 0;
  animation: rise linear infinite;
}

.particles span:nth-child(1)  { left: 6%;  animation-duration: 14s; animation-delay: 0s;   transform: scale(0.7); }
.particles span:nth-child(2)  { left: 14%; animation-duration: 18s; animation-delay: 3s;   transform: scale(1.1); }
.particles span:nth-child(3)  { left: 23%; animation-duration: 13s; animation-delay: 7s;   transform: scale(0.5); }
.particles span:nth-child(4)  { left: 31%; animation-duration: 20s; animation-delay: 1.5s; transform: scale(0.9); }
.particles span:nth-child(5)  { left: 42%; animation-duration: 16s; animation-delay: 9s;   transform: scale(0.6); }
.particles span:nth-child(6)  { left: 50%; animation-duration: 22s; animation-delay: 5s;   transform: scale(1.2); }
.particles span:nth-child(7)  { left: 58%; animation-duration: 15s; animation-delay: 11s;  transform: scale(0.8); }
.particles span:nth-child(8)  { left: 67%; animation-duration: 19s; animation-delay: 2s;   transform: scale(0.5); }
.particles span:nth-child(9)  { left: 75%; animation-duration: 14s; animation-delay: 8s;   transform: scale(1.0); }
.particles span:nth-child(10) { left: 84%; animation-duration: 21s; animation-delay: 4s;   transform: scale(0.7); }
.particles span:nth-child(11) { left: 91%; animation-duration: 17s; animation-delay: 10s;  transform: scale(0.9); }
.particles span:nth-child(12) { left: 96%; animation-duration: 15s; animation-delay: 6s;   transform: scale(0.6); }

@keyframes rise {
  0%   { opacity: 0; transform: translateY(0); }
  8%   { opacity: 0.9; }
  85%  { opacity: 0.35; }
  100% { opacity: 0; transform: translateY(-105vh); }
}

/* ---------- ornamental corners ---------- */

.corner {
  position: fixed;
  width: clamp(64px, 9vw, 120px);
  height: clamp(64px, 9vw, 120px);
  z-index: 2;
  opacity: 0.85;
}

.corner-tl { top: 22px; left: 22px; }
.corner-br { bottom: 22px; right: 22px; transform: rotate(180deg); }

/* ---------- layout ---------- */

.page {
  position: relative;
  z-index: 3;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(40px, 7vh, 72px) 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- logo ---------- */

.logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: clamp(28px, 5vh, 48px);
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.logo {
  width: clamp(190px, 30vw, 280px);
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 0 45px rgba(212, 175, 55, 0.22),
    0 24px 60px rgba(0, 0, 0, 0.55);
}

/* slowly spinning dashed gold halo around the logo */
.logo-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.45);
  animation: spin 40s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- hero ---------- */

.eyebrow {
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 26px;
}

.title-line {
  display: block;
  font-size: clamp(30px, 5.2vw, 52px);
  color: #eef5f0;
  letter-spacing: 0.02em;
}

.title-accent {
  font-size: clamp(40px, 7.4vw, 74px);
  font-weight: 700;
  background: linear-gradient(100deg,
    var(--gold-600) 0%,
    var(--gold-400) 22%,
    var(--gold-100) 50%,
    var(--gold-400) 78%,
    var(--gold-600) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

/* ---------- divider ---------- */

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(380px, 70%);
  margin: 0 auto 26px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}

.divider-line:last-child {
  background: linear-gradient(90deg, var(--gold-400), transparent);
}

.divider-gem {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- subtitle ---------- */

.subtitle {
  max-width: 520px;
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 auto clamp(34px, 5vh, 48px);
}

/* ---------- progress bar ---------- */

.progress {
  width: min(420px, 86%);
  margin: 0 auto clamp(44px, 7vh, 64px);
}

.progress-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300), var(--gold-100));
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.65);
  animation: slide 2.6s ease-in-out infinite;
}

@keyframes slide {
  0%   { transform: translateX(-110%); }
  55%  { transform: translateX(180%); }
  100% { transform: translateX(280%); }
}

.progress-label {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: var(--gold-300);
}

/* ---------- contact ---------- */

.contact-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 500;
  font-style: italic;
  color: #e9f2ec;
  margin-bottom: 24px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 250px;
  padding: 22px 30px;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.07), rgba(212, 175, 55, 0.02));
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(212, 175, 55, 0.18);
  outline: none;
}

.card-icon {
  width: 26px;
  height: 26px;
  color: var(--gold-300);
  margin-bottom: 6px;
}

.card-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.card-value {
  font-size: 16px;
  font-weight: 400;
  color: var(--gold-100);
}

/* ---------- footer ---------- */

.footer {
  margin-top: clamp(56px, 9vh, 88px);
  padding-top: 22px;
  width: 100%;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

/* ---------- accessibility & small screens ---------- */

@media (prefers-reduced-motion: reduce) {
  .bg-glow, .particles span, .logo-wrap, .logo-ring,
  .title-accent, .progress-fill {
    animation: none;
  }
}

@media (max-width: 520px) {
  .corner { display: none; }
  .card { width: 100%; }
  .eyebrow { font-size: 10px; letter-spacing: 0.22em; text-indent: 0.22em; }
  .title-line { font-size: clamp(22px, 6.6vw, 26px); }
  .title-accent { font-size: clamp(28px, 8.8vw, 34px); }
}
