
:root{
  --green:#0e3228;
  --gold:#d4af37;
  --white:#ffffff;
  --shadow:rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Montserrat',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--gold);
  background:var(--green);
  overflow-x:hidden;
}
.texture-bg{
  position:fixed; inset:0; z-index:-1;
  background:
    linear-gradient(0deg, rgba(0,0,0,.18), rgba(0,0,0,.18)),
    radial-gradient(closest-side, rgba(255,255,255,.04), rgba(255,255,255,0) 60%) 0 0/48px 48px,
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0/64px 64px,
    linear-gradient(0deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0/64px 64px,
    var(--green);
}
.hero{
  padding:48px 16px 16px;
  text-align:center;
  max-width:980px;
  margin:0 auto;
}
.logo-wrap{
  width:120px; height:120px; margin:0 auto 12px;
  display:grid; place-items:center;
  border-radius:28px;
}
.logo-animated{
  width:100px; height:100px; object-fit:contain; filter: drop-shadow(0 6px 20px var(--shadow));
  opacity:0; transform: translateY(8px) scale(.96);
  animation: fadeUp 1.2s ease forwards, glow 2.6s ease-in-out 1.2s infinite alternate;
}
@keyframes fadeUp{
  to{opacity:1; transform: translateY(0) scale(1)}
}
@keyframes glow{
  from{ filter: drop-shadow(0 8px 24px rgba(214,175,55,.25)); }
  to{ filter: drop-shadow(0 8px 34px rgba(214,175,55,.55)); }
}
.title{
  font-family:'Cormorant Garamond', serif;
  font-weight:700;
  letter-spacing:.02em;
  color:var(--white);
  margin:6px 0 4px;
  font-size:clamp(1.4rem, 2.4vw + 1rem, 2.2rem);
}
.title span{ color: var(--gold); }
.subtitle{
  color:#e6e6e6;
  margin:0 0 18px;
  font-size:clamp(.95rem, .6vw + .7rem, 1.05rem);
}
.countdown{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(214,175,55,.35);
  border-radius:14px;
  backdrop-filter: blur(2px);
  box-shadow:0 10px 30px var(--shadow);
}
.countdown .slot{
  min-width:72px;
  display:flex; flex-direction:column; align-items:center;
}
.countdown strong{
  font-size:clamp(1.2rem, 2.2vw + .6rem, 2rem);
  line-height:1;
  color:var(--gold);
  font-weight:700;
}
.countdown span{
  font-size:.8rem;
  color:#dedede;
  margin-top:2px;
}
.countdown .sep{
  color:#e8e8e8; font-weight:700; font-size:1.2rem; opacity:.8;
}
.form-section{
  max-width: 980px;
  margin: 24px auto 40px;
  padding: 0 16px;
}
.form-section iframe{
  width:100%;
  height: 1495px;
  border:none;
  border-radius:12px;
  background:#fff;
  box-shadow:0 30px 60px var(--shadow);
}
.footer{
  text-align:center;
  padding:22px 12px 46px;
  color:#cfcfcf;
  font-size:.9rem;
}
