:root{--font:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial}
    *{box-sizing:border-box}
    html,body{margin:0;height:100%;font:16px/1.6 var(--font)}
    a{color:#ffd700;text-decoration:none}
    a:hover{text-decoration:underline}
    address{font-style:normal;white-space:pre-line}

    /* Hero background */
    .hero {
      background: url('horton street.jpg') center/cover no-repeat;
      color: #fff;
      text-shadow: 0 2px 8px rgba(0,0,0,0.7);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
    }
    h1{margin:0 0 1rem;font-size:2.2rem}
    .info{font-size:1.1rem;line-height:1.7}
    .btn {
      margin-top:1.5rem;
      padding:.9rem 1.3rem;
      border:none;
      border-radius:999px;
      background:#2e7bfd;
      color:white;
      font-weight:700;
      cursor:pointer;
      text-decoration:none;
      display:inline-block;
    }
    .btn:hover { background:#1e5fd9 }