/* =============================
   JR GROUP CONTRACTING - COMING SOON
   ============================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --gold:       #F5A623;
  --gold-light: #FFD06B;
  --gold-dark:  #C07D0A;
  --black:      #0D0D0D;
  --dark:       #161616;
  --dark2:      #1E1E1E;
  --white:      #FFFFFF;
  --muted:      rgba(255,255,255,0.55);
  --border:     rgba(245,166,35,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- BACKGROUND ---- */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(245,166,35,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(245,166,35,0.07) 0%, transparent 60%),
    var(--black);
}

.grid-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ---- PARTICLES ---- */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ---- WRAPPER ---- */
.page-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  gap: 32px;
}

/* ---- LOGO ---- */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.logo-wrap img {
  width: clamp(140px, 22vw, 240px);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(245,166,35,0.35));
  animation: floatLogo 5s ease-in-out infinite;
}

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

/* ---- HERO TEXT ---- */
.hero {
  text-align: center;
  max-width: 760px;
  width: 100%;
}

.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(10px, 1.5vw, 13px);
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ---- DIVIDER ---- */
.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
}

/* ---- COUNTDOWN ---- */
.countdown-wrap {
  width: 100%;
  max-width: 640px;
}

.countdown-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  opacity: 0.8;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 28px);
  flex-wrap: wrap;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(14px, 2.5vw, 24px) clamp(16px, 3vw, 32px);
  min-width: clamp(70px, 12vw, 110px);
  position: relative;
  overflow: hidden;
}

.cd-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cd-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.cd-unit {
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ---- NOTIFY FORM ---- */
.notify-form {
  width: 100%;
  max-width: 480px;
  display: flex;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.notify-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--white);
}

.notify-form input::placeholder { color: var(--muted); }

.notify-form button {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border: none;
  padding: 14px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.notify-form button:hover { opacity: 0.88; }

.notify-msg {
  text-align: center;
  font-size: 13px;
  color: var(--gold);
  margin-top: 10px;
  min-height: 18px;
  letter-spacing: 0.05em;
}

/* ---- CONTACT BAR ---- */
.contact-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  width: 100%;
  max-width: 700px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item:hover { color: var(--gold); }

.contact-item svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* ---- FOOTER ---- */
footer {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  padding-top: 8px;
}

footer span { color: var(--gold); opacity: 0.7; }

/* ---- SUCCESS STATE ---- */
.notify-form.submitted input,
.notify-form.submitted button {
  pointer-events: none;
  opacity: 0.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .page-wrapper { padding: 28px 16px; gap: 24px; }
  .countdown { gap: 10px; }
  .notify-form { flex-direction: column; border-radius: 8px; }
  .notify-form button { border-radius: 0 0 6px 6px; text-align: center; }
  .contact-bar { gap: 16px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-wrap img { animation: none; }
}
