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

    :root {
      --green-main: #28aa1e;
      --green-deep: #00643b;
      --green-bright: #97d700;
      --black: #231f20;
      --dark: #333333;
      --mid: #999999;
      --white: #ffffff;
    }

    html, body {
      width: 100%;
      height: 100%;
    }

    body {
      font-family: 'Manrope', sans-serif;
      min-height: 132vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow-x: hidden;
    }

    /* Full-bleed background */
    .bg {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
		      background-image: url('/images/background.jpeg');

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 0;
    }

    /* Subtle dark overlay so card pops */
    .bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(0, 100, 59, 0.35) 0%,
        rgba(35, 31, 32, 0.55) 100%
      );
    }

    /* Centred card */
    .card {
      position: relative;
      z-index: 1;
      width: min(420px, 92vw);
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(9px) saturate(1.4);
      -webkit-backdrop-filter: blur(9px) saturate(1.4);
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 28px;
      padding: 20px 27px 20px;
      box-shadow:
        0 8px 40px rgba(35, 31, 32, 0.35),
        0 2px 8px rgba(0, 100, 59, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
      animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

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

    /* Avatar / logo mark */
    .avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 4px 20px rgba(40, 170, 30, 0.45);
		background-color: #00a85a;
	  }

    .avatar img {
      width: 70%;
      height: 70%;
      object-fit: cover;
      display: block;
    }

    /* Title */
    .card-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 6vw, 2.6rem);
      letter-spacing: 0.06em;
      color: var(--white);
      text-align: center;
      line-height: 1;
      text-shadow: none;
		margin-bottom: 15px;
    }

    .card-sub {
      font-family: 'Manrope', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--green-bright);
      text-align: center;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 6px;
      margin-bottom: 32px;
    }

    /* Link list */
    .links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .links li {
      animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .links li:nth-child(1) { animation-delay: 0.10s; }
    .links li:nth-child(2) { animation-delay: 0.18s; }
    .links li:nth-child(3) { animation-delay: 0.26s; }
    .links li:nth-child(4) { animation-delay: 0.34s; }
    .links li:nth-child(5) { animation-delay: 0.42s; }
    .links li:nth-child(6) { animation-delay: 0.50s; }
    .links li:nth-child(7) { animation-delay: 0.58s; }
    .links li:nth-child(8) { animation-delay: 0.66s; }

    .link-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: var(--white);
      text-decoration: none;
      font-family: 'Manrope', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      transition:
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.18s ease,
        box-shadow 0.22s ease;
    }

    .link-btn:hover,
    .link-btn:focus-visible {
      background: rgba(151, 215, 0, 0.2);
      border-color: var(--green-bright);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(151, 215, 0, 0.22);
      outline: none;
    }

    .link-btn:active {
      transform: translateY(0);
    }

    .link-btn .icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-right: 14px;
      font-size: 1rem;
    }

    .link-btn .label {
      flex: 1;
    }

    .link-btn .arrow {
      width: 18px;
      height: 18px;
      opacity: 0.5;
      flex-shrink: 0;
      transition: opacity 0.2s, transform 0.2s;
    }

    .link-btn:hover .arrow {
      opacity: 1;
      transform: translateX(3px);
    }

    /* Icon colours per link */
    .link-btn:nth-child(1) .icon { background: rgba(40,170,30,0.3); }
    .link-btn:nth-child(2) .icon { background: rgba(0,100,59,0.3); }
    .link-btn:nth-child(3) .icon { background: rgba(151,215,0,0.2); }
    .link-btn:nth-child(4) .icon { background: rgba(40,170,30,0.25); }
    .link-btn:nth-child(5) .icon { background: rgba(0,100,59,0.25); }
    .link-btn:nth-child(6) .icon { background: rgba(151,215,0,0.15); }

    /* Footer */
    .card-footer {
      margin-top: 28px;
      text-align: center;
      font-size: 0.72rem;
      font-weight: 500;
      color: rgba(255,255,255,0.38);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* Divider line above footer */
    .divider {
      height: 1px;
      background: rgba(255,255,255,0.12);
      margin: 28px 0 20px;
    }

  /* Success banner (shown via ?success=1 query param) */
  .success-banner {
    display: none;
    background: rgba(151, 215, 0, 0.18);
    border: 1px solid var(--green-bright);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: var(--green-bright);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.03em;
  }

  .success-banner.visible {
    display: block;
  }

  /* Form layout */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }

  .form-group label .req {
    color: var(--green-bright);
    margin-left: 2px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    resize: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--green-bright);
    background: rgba(151, 215, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(151, 215, 0, 0.12);
  }

  .form-group input.error,
  .form-group textarea.error {
    border-color: #ff6b6b;
  }

  .form-group .field-error {
    font-size: 0.72rem;
    color: #ff6b6b;
    font-weight: 500;
    display: none;
  }

  .form-group .field-error.visible {
    display: block;
  }

  /* Honeypot — visually hidden but accessible to bots */
  .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    tab-index: -1;
    aria-hidden: true;
  }

  /* Submit button */
  .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--green-main), var(--green-deep));
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.18s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(40, 170, 30, 0.4);
    margin-top: 4px;
  }

  .submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(40, 170, 30, 0.5);
  }

  .submit-btn:active {
    transform: translateY(0);
  }