/* =========================================================
   Red Dragon Customs — one-page holding site
   Black background · red fire glow · chrome detail
   ========================================================= */

:root {
  --black: #050505;
  --black-2: #0a0808;
  --red: #e01818;
  --red-bright: #ff2a1a;
  --ember: #ff6a2c;
  --chrome: #eceff3;
  --chrome-dim: #b8bec7;
  --text: #efe7e4;
  --text-dim: #b6aeac;
  --max: 1280px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(120% 90% at 50% 8%, #1a0605 0%, #0a0403 42%, var(--black) 100%),
    var(--black);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Ambient background ---------- */
.ambience {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-core {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(90vw, 900px);
  height: min(90vw, 900px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(224, 24, 24, 0.22) 0%, rgba(255, 106, 44, 0.10) 30%, transparent 62%);
  filter: blur(28px);
  animation: pulse 7s ease-in-out infinite;
}

.ember {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.ember-1 {
  width: 46vw; height: 46vw;
  top: -8%; left: -6%;
  background: radial-gradient(circle, rgba(255, 42, 26, 0.18), transparent 68%);
  animation: drift 16s ease-in-out infinite;
}
.ember-2 {
  width: 42vw; height: 42vw;
  bottom: -10%; right: -8%;
  background: radial-gradient(circle, rgba(255, 106, 44, 0.16), transparent 68%);
  animation: drift 20s ease-in-out infinite reverse;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 45%, transparent 52%, rgba(0, 0, 0, 0.7) 100%);
}

/* ---------- Layout ---------- */
.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.2rem, 6vh, 4rem) clamp(1.4rem, 5vw, 4rem) clamp(5rem, 8vh, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 4vh, 3rem);
  text-align: center;
}

/* ---------- Strap-line ---------- */
.strapline {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.6vw, 1.7rem);
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.9);
  max-width: 40ch;
}

/* ---------- Hero logo ---------- */
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
}
.logo {
  width: min(94%, 880px);
  height: auto;
  display: block;
  /* logo already sits on black — glow lifts it off the page */
  filter: drop-shadow(0 0 60px rgba(224, 24, 24, 0.30)) drop-shadow(0 0 22px rgba(255, 106, 44, 0.20));
  animation: breathe 6.5s ease-in-out infinite;
}

/* ---------- Services ---------- */
.services {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 980px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(0.6rem, 3vw, 2.6rem);
  flex-wrap: wrap;
}
.service {
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0.6rem;
}
.service-mark {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  box-shadow: 0 0 10px rgba(255, 42, 26, 0.7);
}
.service-text {
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: clamp(0.82rem, 1.5vw, 1.02rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--chrome);
  line-height: 1.5;
  background: linear-gradient(180deg, #ffffff 0%, #cfd4da 48%, #8b9099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

/* ---------- Main message ---------- */
.message {
  margin-top: clamp(0.5rem, 2vh, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.message-eyebrow {
  color: var(--red);
  letter-spacing: 0.5em;
  font-size: 1.1rem;
  opacity: 0.8;
}
.message-title {
  margin: 0;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 5.4vw, 3.4rem);
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #ffd9d0 30%, #e01818 72%, #7a0d0d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(224, 24, 24, 0.35);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.6rem 1rem 2.2rem;
}
.footer-mark {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.06); }
}
@keyframes breathe {
  0%, 100% { filter: drop-shadow(0 0 55px rgba(224, 24, 24, 0.26)) drop-shadow(0 0 20px rgba(255, 106, 44, 0.18)); }
  50%      { filter: drop-shadow(0 0 78px rgba(224, 24, 24, 0.40)) drop-shadow(0 0 30px rgba(255, 106, 44, 0.28)); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(4%, 3%); }
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .services {
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
  }
  .service { flex: 0 1 auto; max-width: 90%; }
  .logo { width: 100%; }
  .strapline { max-width: 30ch; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none; }
  .glow-core, .ember, .logo { animation: none; }
}
