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

    body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #0a3d00 0%, #1a7000 45%, #22cc00 75%, #a8f080 100%);
      font-family: 'Cormorant Garamond', Georgia, serif;
      overflow: hidden;
      position: relative;
    }

    .grass {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      pointer-events: none;
    }

    .particle {
      position: fixed;
      border-radius: 50%;
      background: rgba(255,255,180,0.6);
      pointer-events: none;
      animation: floatUp linear infinite;
    }
    @keyframes floatUp {
      0%   { transform: translateY(0) scale(1); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 0.5; }
      100% { transform: translateY(-105vh) scale(0.3); opacity: 0; }
    }

    .card {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      padding: 20px;
      text-align: center;
      animation: appear 1.2s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes appear {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .badge {
      background: linear-gradient(135deg, #22cc00 0%, #1a8c00 100%);
      border: 3px solid #000;
      border-radius: 18px;
      padding: 16px 40px 20px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.35);
      width: min(600px, 90vw);
    }
    .badge-inner { position: relative; border-radius: 10px; overflow: hidden; }
    .badge-grass { display: block; width: 100%; height: 80px; }
    .badge-text {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', cursive;
      font-size: clamp(2.4rem, 7vw, 4rem);
      font-style: italic;
      font-weight: 300;
      color: #000;
      text-shadow: 2px 2px 0 rgba(255,255,255,0.2);
    }
    .badge-text .sm { font-size: 0.68em; }
    .badge-text .lg { font-size: 1.28em; line-height: 0.85; }

    .coming {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.1rem, 3vw, 1.6rem);
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: #fff;
      text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    }

    .tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.05em;
    }

    .divider {
      width: 48px; height: 1px;
      background: rgba(255,255,255,0.45);
    }

    .notify {
      display: flex;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 6px 24px rgba(0,0,0,0.25);
      width: min(420px, 88vw);
    }
    .notify input {
      flex: 1;
      padding: 14px 22px;
      border: none;
      outline: none;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      color: #1a1a1a;
      background: rgba(255,255,255,0.95);
    }
    .notify input::placeholder { color: #999; }
    .notify button {
      padding: 14px 24px;
      border: none;
      background: #0a3d00;
      color: #22cc00;
      font-family: 'Cinzel', serif;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .notify button:hover { background: #051f00; }

    .note {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.45);
    }

    .url {
      font-family: 'Cinzel', serif;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
    }
    .url:hover { color: rgba(255,255,255,0.85); }

    .schedule-btn {
      display: inline-block;
      padding: 18px 40px;
      border: none;
      border-radius: 50px;
      background: #fff;
      color: #0a3d00;
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(0,0,0,0.25);
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
      white-space: nowrap;
    }
    .schedule-btn:hover {
      background: #f0f0f0;
      box-shadow: 0 8px 32px rgba(0,0,0,0.35);
      color: #051f00;
    }