@font-face {
  font-family: 'Biennale-Regular';
  src: url('../fonts/Biennale-Regular (2) (2).otf') format('opentype');
}

@font-face {
  font-family: 'Biennale-Bold';
  src: url('../fonts/Biennale-Bold (2) (1) (1).otf') format('opentype');
}

   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    body {
font-family: 'Biennale-Regular';
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background-color: #d9d5cb;
    }
 
    /* ── Background leaf pattern ── */
    .hero {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px 80px;
      overflow: hidden;
      background-color: #d9d5cb;
    }
 
    /* SVG leaf used as a CSS background via data URI */
    .leaf {
      position: absolute;
      opacity: 0.18;
      pointer-events: none;
      fill: #b5b0a3;
    }
 
    /* Individual leaf placements */
    .leaf-1  { width: 180px; top: -20px;  left: -30px;  transform: rotate(-15deg); }
    .leaf-2  { width: 220px; top: 30px;   left: 120px;  transform: rotate(25deg);  }
    .leaf-3  { width: 160px; top: 10px;   left: 380px;  transform: rotate(-5deg);  }
    .leaf-4  { width: 200px; top: -30px;  right: 300px; transform: rotate(10deg);  }
    .leaf-5  { width: 240px; top: -10px;  right: 60px;  transform: rotate(-20deg); }
    .leaf-6  { width: 170px; bottom: 20px; left: -20px; transform: rotate(30deg);  }
    .leaf-7  { width: 210px; bottom: -10px; left: 200px; transform: rotate(-8deg); }
    .leaf-8  { width: 190px; bottom: 30px; right: 200px; transform: rotate(15deg); }
    .leaf-9  { width: 230px; bottom: -20px; right: -10px; transform: rotate(-25deg);}
    .leaf-10 { width: 150px; top: 40%;    left: -30px;  transform: rotate(5deg);   }
    .leaf-11 { width: 200px; top: 35%;    right: -20px; transform: rotate(-12deg); }
 
    /* ── Modal card ── */
    .card {
      position: relative;
      z-index: 1;
      background: transparent;
      max-width: 440px;
      width: 100%;
      text-align: left;
    }
 
    .card h1 {
      font-size: clamp(1.8rem, 5vw, 2.35rem);
      font-weight: 800;
      color: #0c2229;
      text-align: center;
      margin-bottom: 28px;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }
 
    /* State selector */
    .field-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #0c2229;
      margin-bottom: 6px;
    }
 
    .select-wrapper {
      position: relative;
      margin-bottom: 20px;
    }
 
    .select-wrapper select {
      width: 100%;
      padding: 13px 40px 13px 16px;
      border: 1.5px solid #c2bdb4;
      border-radius: 4px;
      background: #fff;
      font-size: 1rem;
      color: #0c2229;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      outline: none;
    }
 
    .select-wrapper select:focus {
      border-color: #0c2229;
    }
 
    .select-arrow {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: #0c2229;
      font-size: 0.85rem;
    }
 
    /* Age notice */
    .notice {
      font-size: 0.92rem;
      color: #0c2229;
      line-height: 1.5;
      margin-bottom: 20px;
    }
 
    /* Checkboxes */
    .checkbox-group {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 28px;
    }
 
    .checkbox-label {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
      font-size: 0.93rem;
      color: #0c2229;
      line-height: 1.5;
    }
 
    .checkbox-label input[type="checkbox"] {
      display: none;
    }
 
    .custom-check {
      width: 22px;
      height: 22px;
      min-width: 22px;
      border-radius: 4px;
      background: #1a4a5c;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }
 
    .custom-check svg {
      width: 13px;
      height: 13px;
      stroke: #fff;
      stroke-width: 2.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .checkbox-label input[type="checkbox"]:not(:checked) ~ .custom-check {
      background: #fff;
      border: 1.5px solid #c2bdb4;
    }
 
    .checkbox-label input[type="checkbox"]:not(:checked) ~ .custom-check svg {
      display: none;
    }
 
    .checkbox-text a {
      color: #0c2229;
      text-decoration: underline;
    }
 
    /* Buttons */
    .btn-row {
      display: flex;
      gap: 12px;
    }
 
    .btn-primary {
      flex: 1;
      padding: 15px 20px;
      background: #0c2229;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 0.01em;
      transition: background 0.18s;
    }
 
    .btn-primary:hover { background: #173540; }
 
    .btn-secondary {
      flex: 1;
      padding: 15px 20px;
      background: transparent;
      color: #0c2229;
      border: 1.5px solid #c2bdb4;
      border-radius: 6px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: border-color 0.18s, background 0.18s;
    }
 
    .btn-secondary:hover { background: rgba(0,0,0,0.04); }
 
    /* ── Footer ── */
    footer {
      background: #ccc9bf;
      padding: 24px 20px 20px;
      text-align: center;
    }
 
    .footer-lang {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: #0c2229;
      margin-bottom: 12px;
    }
 
    .footer-lang img {
      width: 20px;
      height: 14px;
      object-fit: cover;
      border-radius: 1px;
    }
 
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 4px 10px;
      margin-bottom: 12px;
    }
 
    .footer-links a {
      font-size: 0.78rem;
      color: #0c2229;
      text-decoration: none;
    }
 
    .footer-links a:hover { text-decoration: none; }
 
    .footer-disclaimer {
      font-size: 0.73rem;
      color: #0c2229;
      max-width: 700px;
      margin: 0 auto 10px;
      line-height: 1.5;
    }
 
    .footer-copy {
      font-size: 0.73rem;
      color: #0c2229;
    }
 
    /* ── Chat bubble ── */
    .chat-bubble {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 44px;
      height: 44px;
      background: #2ec4b6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      z-index: 100;
    }
 
    .chat-bubble svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: #fff;
      stroke-width: 2;
    }
 
    /* ── Responsive ── */
    @media (max-width: 520px) {
      .hero { padding: 40px 16px 60px; }
 
      .leaf-2, .leaf-3, .leaf-4, .leaf-8 { display: none; }
 
      .card h1 { font-size: 1.65rem; margin-bottom: 22px; }
 
      .btn-row { flex-direction: column; }
      .btn-primary, .btn-secondary { flex: none; width: 100%; }
 
      .footer-links { gap: 4px 8px; }
    }