*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
      --bg: #ffffff;
      --accent: #255324;
      --accent2: #1c1c1c;
      --accent3: #255324;
      --text: #292826;
      --muted: #6b6560;
      --line: rgba(28, 107, 8, 0.534);
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Lato', sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow-y: auto;
      overflow-x: hidden;
      position: relative;
    }

  /* Footer */
  footer {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 24px 16px 32px;
    border-top: 1px solid rgba(232, 200, 122, 0.12);
    margin-top: 40px;
  }

  .footer-copy {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 2;
  }

  .footer-copy span {
    color: var(--accent);
  }

    /* Grain overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 10;
    }

    /* Decorative diagonal lines */
    .grid-bg {
      position: fixed;
      inset: 0;
      background-image:
        repeating-linear-gradient(
          -45deg,
          transparent,
          transparent 60px,
          var(--line) 60px,
          var(--line) 61px
        );
      opacity: 0.4;
      z-index: 0;
    }

    /* Radial glow */
    .glow {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(ellipse at center, rgba(248, 245, 245, 0.07) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .container {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 24px;
      max-width: 680px;
    }

    /* Logo placeholder */
    .logo-wrap {
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.2s;
    }

    .logo-box {
      width: 160px;
      height: 160px;
      border: 2px solid var(--accent);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      position: relative;
      background: rgb(255, 255, 255);
      transition: box-shadow 0.4s;
    }

    .logo-box:hover {
      box-shadow: 0 0 32px rgba(232,200,122,0.22);
    }

    .logo-box svg {
      width: 62px;
      height: 62px;
      fill: var(--accent);
    }

    /* Replace the SVG above with an <img> tag pointing to your logo:
       <img src="logo.png" alt="Logo" style="width:80px;height:auto;"> */

    .logo-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 4px;
      color: var(--accent);
      text-transform: uppercase;
    }

    /* Main heading */
    .headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(56px, 12vw, 96px);
      line-height: 0.9;
      letter-spacing: 2px;
      color: var(--text);
      margin-bottom: 8px;
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.4s;
    }

    .headline span {
      color: var(--accent);
    }

    .sub {
      font-size: 13px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.55s;
    }

    /* Divider */
    .divider {
      width: 100px;
      height: 1px;
      background: var(--accent2);
      margin: 0 auto 36px;
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.65s;
    }

    .description {
      font-size: 15px;
      line-height: 1.8;
      color: #255324;
      max-width: 420px;
      margin-bottom: 52px;
      font-weight: 300;
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.75s;
    }

    /* Progress bar */
    .progress-wrap {
      width: 100%;
      max-width: 340px;
      margin-bottom: 52px;
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.85s;
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .progress-track {
      height: 2px;
      background: rgba(255,255,255,0.08);
      border-radius: 2px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--accent2), var(--accent));
      border-radius: 2px;
      width: 0%;
      animation: fillBar 2s cubic-bezier(0.4,0,0.2,1) forwards 1.4s;
    }

    @keyframes fillBar {
      to { width: 72%; }
    }

    /* Contact */
    .contact-line {
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 1s;
    }

    .contact-line a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid #255324;
      padding-bottom: 1px;
      transition: color 0.2s, border-color 0.2s;
    }

    .contact-line a:hover {
      color: #fff;
      border-color: #fff;
    }

    /* Corner decoration */
    .corner {
      position: fixed;
      width: 60px;
      height: 60px;
      border-color: #255324;
      border-style: solid;
      z-index: 1;
    }
    .corner-tl { top: 28px; left: 28px; border-width: 1px 0 0 1px; }
    .corner-tr { top: 28px; right: 28px; border-width: 1px 1px 0 0; }
    .corner-bl { bottom: 28px; left: 28px; border-width: 0 0 1px 1px; }
    .corner-br { bottom: 28px; right: 28px; border-width: 0 1px 1px 0; }

    /* Animated dot */
    .dot-row {
      display: flex;
      gap: 10px;
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.95s;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 1.8s ease-in-out infinite;
    }
    .dot:nth-child(2) { animation-delay: 0.3s; background: var(--accent2); }
    .dot:nth-child(3) { animation-delay: 0.6s; background: var(--accent3); }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.5); opacity: 0.5; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 480px) {
      .corner { width: 36px; height: 36px; }
      .corner-tl, .corner-tr, .corner-bl, .corner-br { top: 16px; }
      .corner-tl, .corner-bl { left: 16px; }
      .corner-tr, .corner-br { right: 16px; }
      .corner-bl, .corner-br { bottom: 16px; }
    }