:root {
  --green-dark: #14532d;
  --green: #1f7a43;
  --green-light: #2f9e5b;
  --navy: #16274a;
  --navy-light: #1f3a68;
  --cream: #f7f5ee;
  --paper: #ffffff;
  --text: #1c2a23;
  --muted: #5b6b62;
  --shadow: 0 20px 45px rgba(20, 40, 30, 0.12);
}

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

body {
  min-height: 100vh;
  font-family: "Georgia", "Times New Roman", serif;
  background: radial-gradient(circle at 20% 15%, #eef6ee 0%, var(--cream) 45%, #eef3f0 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

/* Decorative floating leaves */
.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.leaf {
  position: absolute;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border-radius: 0 100% 0 100%;
  opacity: 0.35;
  animation: drift 16s linear infinite;
}

.leaf-1 { left: 8%;  top: -5%; animation-duration: 14s; animation-delay: 0s; }
.leaf-2 { left: 25%; top: -8%; animation-duration: 19s; animation-delay: 2s; }
.leaf-3 { left: 55%; top: -6%; animation-duration: 16s; animation-delay: 4s; }
.leaf-4 { left: 75%; top: -9%; animation-duration: 21s; animation-delay: 1s; }
.leaf-5 { left: 90%; top: -4%; animation-duration: 17s; animation-delay: 3s; }

@keyframes drift {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.35; }
  100% { transform: translateY(110vh) rotate(280deg); opacity: 0; }
}

.wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 48px 20px;
  padding: 48px 40px 36px;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(20, 83, 45, 0.08);
}

.logo-block {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.logo {
  width: 220px;
  height: auto;
  animation: rise 0.9s ease-out;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-top: 8px;
  font-weight: normal;
}

.hero h1 span {
  color: var(--green);
  font-style: italic;
}

.lead {
  color: var(--muted);
  max-width: 480px;
  margin: 14px auto 30px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.time-block {
  background: var(--cream);
  border: 1px solid rgba(22, 39, 74, 0.08);
  border-radius: 14px;
  min-width: 74px;
  padding: 12px 10px;
}

.time-block span {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.time-block small {
  display: block;
  margin-top: 2px;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: Arial, sans-serif;
}

.contact {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #ece7d9;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 480px;
}

.contact-item a {
  color: var(--navy-light);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: var(--green);
}

.site-footer {
  margin-top: 26px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: #93a196;
}

@media (max-width: 480px) {
  .wrapper { padding: 36px 22px 28px; }
  .time-block { min-width: 62px; padding: 10px 6px; }
}
